Lanny Heidbreder

Results 18 comments of Lanny Heidbreder

It appears this feature was never implemented, or was deleted at some point. I'm looking in the Coffeescript file; there is no instance of the string `appendPopoversTo` in there, and...

ImageAlpha 1.3.5 OS X 10.9.5 "You can add custom images by dragging'n'dropping them on existing ones" does not appear to be true for me. Dragging the solid white PNG at...

I have a different take on this request. Say you're looking at clips from a Nintendo Switch. The Switch will capture the last 30 seconds of gameplay when you tell...

Same here on 1.7.1. Workaround is to use this in PHP: ```unserialize($post->thumbnail()->_wp_attachment_metadata)['width']```

I don't think this goes far enough. Instead of `PluginName/Includes/PluginNameActivator`, you could just have `PluginName/Activator`. I've got a [branch in progress](https://github.com/75th/WordPress-Plugin-Boilerplate/tree/feature/names-and-spaces/plugin-name) that does that, along with some reorganization to have...

(...and now that branch activates cleanly in WordPress.)

This doesn't seem to handle it well when an ACF field that would be converted is empty: TypeError: Timber\Factory\TermFactory::build(): Argument #1 ($term) must be of type WP_Term, WP_Error given, called...

In TermFactory.php, the `from_id` method has this: $wp_term = \get_term($id); if (!$wp_term) { return null; } return $this->build($wp_term); Looks like maybe that `!$wp_term` should be `!$wp_term || $wp_term instanceof \WP_Error`...

> The point I was trying to make in https://github.com/sass/sass/issues/2701 is that your sample code isn't guaranteed to work even when relative URLs are swizzled to be relative to the...