Sovit Tamrakar
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Post] Not working in WordPress 3.7.1Ya.
Updated the requirement now to at least
3.8
Forum: Plugins
In reply to: [Featured Post] Lost all featured post after updating to 3.2.1Yes.. The plugin was completely rewritten.
But in your case, you can still use the old version if the version. If you can i can write a patch code for you so you can upgrade to new version.
contact at [email protected]
Thanks,
SovitForum: Plugins
In reply to: [Featured Post] diplay featured value inside loopIf a post isn’t featured, the _is_featured meta row isn’t set int he database table for the post ID..
So for non-featured post, the return should be blank or empty array. in your case it would be blank return. so check for either blank or “yes” to check if post is featured.Forum: Plugins
In reply to: [Featured Post] Featured posts only showing in Front PageFixed?
Forum: Plugins
In reply to: [World Flag] Not clickablefixed
Forum: Plugins
In reply to: [Featured Post] Featured posts only showing in Front Pagedid you try calling wp_reset_query() before query_posts() ?
Forum: Plugins
In reply to: [Featured Post] Featured posts only showing in Front PageHello,
can you paste your piece of code? so i can check what really is happening?Forum: Plugins
In reply to: [World Flag] Not clickableHello,
Yes, i have reviewed the problem and i will upload a fix soon. It occurred due to version change in TinyMce recently.
Thank you for reporting the bug.
Forum: Plugins
In reply to: [Featured Post] Display only in specific custom postya.. you can do that.. but will require slight modification.. you can include this in theme itself with slight modification. The plugin is one file and indepenent so a slight modification can help you fulfill your need.
Forum: Plugins
In reply to: [Featured Post] not working with post typesshould be working now. please check for updates
Forum: Plugins
In reply to: [Featured Post] Multiple undefined "post_status" index errorsYa, if you have debug enabled, you would be able to see those PHP warnings and notice. So should be fine unless its fatal error and prevents PHP further executions.
Forum: Plugins
In reply to: [Featured Post] get_next_posts_link doesn't work w/ this pluginya. thats a bit tricky… actually you should do something like
$old_query=$wp_query; $wp_query=new WP_Query(array('featured'=>'yes',...your other conditions...)); ... Your if else and while loop with $wp_query->have_posts(); ....your get_next_posts_link() and your get_previous_posts_link(); $wp_query=$old_query; // restore default query variable;
make sure you use $wp_query as wp uses it most for other helper functions if you want to use them
Forum: Plugins
In reply to: [World Flag] PHP Warning – Missing Argument for wpdb::prepare()Please update to latest Plugin version.. this has been fixed already.
Forum: Plugins
In reply to: [World Flag] Plugin not working properlySorry for late response.. but so far as I think, you used WP custom field for the purpose.
Make sure you print/echo the meta field value as
do_shortcode(get_post_meta($post->ID,'_YOUR_FIELD_NAME',true));
or something similarForum: Plugins
In reply to: [World Flag] flag to bigSorry for late response.. but i think you solved the problem..