Mohammad Jangda
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Changes Twentyten 1.0 >> 1.1Forum: Plugins
In reply to: [Plugin: Co-Authors Plus] Livesearch not appearing in IE 7 or 8Quick update: I’ve resolved the issues with IE and a new version should be out within the next week.
Forum: Plugins
In reply to: [Plugin: Co-Authors Plus] Livesearch not appearing in IE 7 or 8Thanks for the note. I’m working on a fix.
Forum: Plugins
In reply to: [Plugin: Plugin Notes] This is really useful!Glad you like the plugin, oddclicker! Thanks for your comment; really appreciated!
Forum: Plugins
In reply to: [Plugin: Edit Flow] Fatal Error on activationEdit Flow required PHP5 to work. Can you confirm that you’re running PHP5 on your server?
If not, you’ll want to talk to your host and ask them to upgrade (so you can run Edit Flow and because it’s better overall).
Forum: Plugins
In reply to: [Plugin: Co-Authors Plus] Co-authors don’t appear with postHopefully within a week or two.
Forum: Plugins
In reply to: [Plugin: Co-Authors Plus] Co-authors don’t appear with postHave you added the template tags to your theme? Details can be found here: http://wordpress.org/extend/plugins/co-authors-plus/other_notes/
The next release of the the plugin will support displaying authors out of the box 🙂
Forum: Plugins
In reply to: [Plugin: Edit Flow] Translating?Sorry, we forgot to update the pot file with the latest release. And to actually load the text-domain properly. I’ll make sure to include both in the next release.
Forum: Plugins
In reply to: Google Analytics plugins questionMost of the plugins will automatically insert the code for you. So all you have to do is remove your GA code and install, activate, and configure your GA plugin of choice.
Which plugin you go with really depends on your needs.
Forum: Plugins
In reply to: [Plugin: Zen] Why…Update: just released the plugin this morning.
Forum: Plugins
In reply to: Custom fuction to modify <!–more–> excerptsGive this a shot:
function switch_img_link( $content ) { if( !is_single() ) { // We're not viewing a post, so switch the link to a permalink } else { // We're viewing the post, so do nothing } return $content; } add_filter('the_content', 'switch_img_link');Forum: Plugins
In reply to: [Plugin: Co-Authors Plus] Getting PHP errorAre you by chance using PHP4?
Forum: Fixing WordPress
In reply to: New Comment Notification Email modThis should work (add your functions.php file):
function remove_sensitive_info( $text ) { // $text is the body of the email. Replace it or modify it to whatever you want return $text; } add_filter('comment_notification_text', 'remove_sensitive_info');Forum: Plugins
In reply to: [Plugin: Edit Flow] You should probably mention this requires PHP 5Good point. Done and done. Thanks! 🙂
Forum: Fixing WordPress
In reply to: How to check if a word is in the category slug?Lots of options… can’t hurt to have some to choose from … 🙂
One of the best things about WordPress 🙂