kyool
Forum Replies Created
-
Thanks, I just have the free version, so I don’t see this option.
Forum: Plugins
In reply to: [Tools for Twitter] Twitter Tools API compatibility?My Twitter Tools 2.4 once again seems to have stopped working as of this morning. I know there a new Twitter API is on the horizon–is anyone else having problems, and does anyone have a new update for that?
Forum: Plugins
In reply to: [Tabs Shortcode] This plugin seems to not support wordpress 3.5It doesn’t show up in tabs–just looks like a bulleted list:
Forum: Plugins
In reply to: [Tabs Shortcode] This plugin seems to not support wordpress 3.5New update still doesn’t work in 3.5–should not be marked as compatible!
OK, so here’s the latest, which seems to work:
I left the settings set to
yes (Use this setting and you don’t need the Widget)
In my single.php I added:
<?php if( function_exists('SPOSTARBUST_related_links_on_posts')) { $SPOSTARBUST_widget = true; SPOSTARBUST_init(); unset($_eli_debug_microtime['SPOSTARBUST_init_skip']); echo SPOSTARBUST_related_links_on_posts("\n \n"); } ?>
And in the index.php for the plugin, I commented out lines 318 and 610, which did:
/add_filter('the_content', $SPOSTARBUST_plugin_dir.'_related_links_on_posts');
I spoke too soon–looks like this causes the post to displayed twice–it starts all over again after the Recent Posts box.
Hmm, I checked the No option and saved the settings and then tried the following:
if( function_exists(‘SPOSTARBUST_related_links_on_posts’)) {
$SPOSTARBUST_widget = true;
SPOSTARBUST_init();
unset($_eli_debug_microtime[‘SPOSTARBUST_init_skip’]);
echo SPOSTARBUST_related_links_on_posts(“\n \n”);
}but I was seeing it twice now–once in the content and once afterwards.
So I edited the code and //’d out the two add_filter calls and it looks like it’s working correctly now.
Thanks.