Mohammad Jangda
Forum Replies Created
-
Forum: Plugins
In reply to: [Liveblog] Normal Users dont see liveblog partJust pushed out v1.1 that should fix backwards compatibility issues with 3.4.
Forum: Plugins
In reply to: [Liveblog] Normal Users dont see liveblog partWe’ve added some back-compat and will push out a new version soon: https://github.com/Automattic/liveblog/commit/b5df6d8491a3a13b2b4322043cc66937dc08f855
Forum: Plugins
In reply to: [Liveblog] Normal Users dont see liveblog partYeah, we’re working on a fix.
Forum: Plugins
In reply to: [Liveblog] Normal Users dont see liveblog partI suspect the issue is that we’re relying on some changes that are expected to go live in 3.5. The curse of testing on trunk. If that really is the issue, we’ll work on some backwards-compat for 3.4.x.
Forum: Plugins
In reply to: [Lazy Load] [Plugin: Lazy Load] Will this work on remotely hosted images?Your attributes are reversed. The 1×1 pixel should be the
srcattribute and the actual image should be thedata-lazy-srcattribute.Should be fixed in v0.5.
Forum: Plugins
In reply to: [Developer] [Plugin: Developer] Modal setup window wont go awayThere was a bug in the network admin if the plugin was Network Activated, which has been fixed in v1.1.
Forum: Plugins
In reply to: [Developer] [Plugin: Developer] ERROR! when installing pluginsThanks for pointing out the piglatin issue, @bobbingwide. We’ve pushed a fix in v1.1.1.
Yeah, it’s a load order issue.
Something like this probably works better:
add_action( 'init', 'my_register_public_post_types_to_zones', 99 ); // init late to make sure zoninator and our custom post types are loaded function my_register_public_post_types_to_zones() { $available_post_types = array_values( get_post_types( array( 'public' => true, '_builtin' => false ), 'names' ) ); foreach ( $available_post_types as $post_type ) { add_post_type_support( $post_type, 'zoninator_zones' ); register_taxonomy_for_object_type( 'zoninator_zones', $post_type ); } }Forum: Plugins
In reply to: [Lazy Load] [Plugin: Lazy Load] Does it work with WP Super Cache?Yep, it should.
Forum: Plugins
In reply to: [Lazy Load] [Plugin: Lazy Load] Lazy loading of comment avatarsGreat idea; r576393
Forum: Plugins
In reply to: [Lazy Load] [Plugin: Lazy Load] add load image functionIn v0.4, you can do:
if ( function_exists( 'lazyload_images_add_placeholders' ) ) $content = lazyload_images_add_placeholders( $content );Forum: Plugins
In reply to: [Lazy Load] [Plugin: Lazy Load] Bug in lazyload_images_add_placeholders??Nice catch; fixed in r576386
Forum: Plugins
In reply to: [Lazy Load] [Plugin: Lazy Load] Non-static methods being called StaticallyThanks, fixed in r576389
Forum: Plugins
In reply to: [Lazy Load] [Plugin: Lazy Load] How to check if it's workingIf you see the
data-lazy-loaded="true"attribute in your images, it’s working 🙂