Mohammad Jangda
Forum Replies Created
-
Forum: Plugins
In reply to: [Edit Flow] Some extensions causing server errorHi Tim,
Can you please look in your error logs to see what the error is?
Forum: Plugins
In reply to: [Co-Authors Plus] Additional Contact/Social infoCheck out this plugin which adds social profile support for Guest Authors: https://github.com/Automattic/Co-Authors-Plus-Social-Pack
Forum: Plugins
In reply to: [Zone Manager (Zoninator)] Links to CategoriesNo, this is meant for posts only. You’d be better off going with using the built-in Menu feature instead.
Forum: Plugins
In reply to: [Lazy Load] Images misplaced when javascript deactivatedThere’s a noscript fallback for images for no-js browsers. I suspect there’s some styling on the site that’s causing things to look misplaced.
No plans to fix or address at this time.
Forum: Plugins
In reply to: [Liveblog] Server Load?Yep, it can be a pretty intensive plugin if you get a lot of traffic as each user will do an ajax request every 10s (or more or less depending on how frequently you set the refresh interval; on WP.com, we set it to 3s).
Caching will go long way to help you scale this.
Forum: Plugins
In reply to: [Zone Manager (Zoninator)] Dividing zones into "child-zones"This is what I’m referring to in terms of “already written code”: https://github.com/Automattic/zoninator/blob/master/zoninator.php#L642 — it’s not a lot, but feel free to work from that and send over a pull request.
Forum: Plugins
In reply to: [Zone Manager (Zoninator)] Dividing zones into "child-zones"Yep, moving and copying posts within zones has been on the list for some time now. Some of the code for has been written. Just need to be glued in via the UI and tested.
Forum: Reviews
In reply to: [Developer] Great way to save some timeThanks for the review @czief! Glad you find the plugin useful 🙂
If there are any other plugins or tools that you think we can add, definitely let us know.
Forum: Plugins
In reply to: [Developer] Debug-Bar-ExtenderSounds like a good idea 🙂
Forum: Plugins
In reply to: [Lazy Load] Compatibility issue with jQuery 1.8.2Thanks; will push out an update.
Forum: Plugins
In reply to: [Developer] oops dashboard is looking VERY strange after plugin installYeah, I think Pig Latin could use a toggle in the toolbar to turn translation mode on or off.
Forum: Plugins
In reply to: [Liveblog] Header of page repeating and WP Total CacheIt looks like your theme might be incorrectly outputting the content twice on the page.
Forum: Plugins
In reply to: [Liveblog] Liveblog v1.1 brakes with WordPress 1.5I’m assuming you mean 3.5 🙂
We’ll get an update out soon. Thanks for the heads up!
Forum: Plugins
In reply to: [Liveblog] [Plugin: Liveblog] Error 404Can you try the latest version from Github: https://github.com/Automattic/liveblog/archive/master.zip
We pushed a few changes to how Liveblog endpoints are generated and that might fix most of the issues noted here.
Forum: Plugins
In reply to: [Liveblog] [Plugin: Liveblog] Can this work on custom post types?You need to explicitly add support for post types. When you register your post_type you can pass
livebloginto thesupportsarray, or calladd_post_type_support( 'post_type', 'liveblog' )