cubexpert
Forum Replies Created
-
Forum: Plugins
In reply to: [AddToAny Share Buttons] How to move buttons to above Jetpack related posts?I have the same problem with Yuzo related posts, but this trick did nothing for me. Any suggestions?
Forum: Plugins
In reply to: [WordPress Popular Posts] Print javascript in wp_footerI had the Javascript to footer plugin enabled, which did not agree with your choice to load your scrip early. I would guess that almost all users with this particular problem (content not showing for popular posts) have some plugin or modification to load javascript in the footer (which is recommended to get content loaded fast).
I found the solution through another thread. I had the Javascript to footer plugin enabled, which did not agree with your choice to load your scrip early. I would guess that almost all users with this particular problem have some plugin or modification to load javascript in the footer (which is recommended to get content loaded fast).
I have had the exact same problem with all the latest versions. Reverted to 2.3.7 for a long time but tried to update again a couple of days ago, but no improvement.
Have the latest WP version and all my plug-ins are legit and up to date. With or without cache, it just will not show anything but the all time widget. The other views update as they should (after being reset by the update), but nothing is shown.
Hope this problem get’s recognized and solved soon. Love this plug-in and would like to be up to date and not revert to 2.3.7 again.
Forum: Plugins
In reply to: [Yoast SEO] Twenty Ten titles and WordPress SEOI think the correct way to deal with this is the possibility to revert the automatic settings (ajax) that WordPress SEO suggests. There is no way to see that you have allowed WP SEO to change the title, and no way to revert the setting.
function wpseo_autogen_title_callback() {
$options = get_wpseo_options();
$p = get_post($_POST[‘postid’], ARRAY_A);
$p[‘post_title’] = stripslashes($_POST[‘curtitle’]);
if ($options[‘title-‘.$p[‘post_type’]] != ”)
echo wpseo_replace_vars($options[‘title-‘.$p[‘post_type’]], $p );
else
echo $p[‘post_title’] . ‘ – ‘ .get_bloginfo(‘name’);
die();
}
add_action(‘wp_ajax_wpseo_autogen_title’, ‘wpseo_autogen_title_callback’);