Does the same problem occur with the WordPress default theme?
It works fine with the WP default theme. How do you think I should go about troubleshooting?
I would consult the theme developer. If the theme has own method to handle widget outputs, it is likely the cause.
If you are certain that the problem is reproducable with other themes, let me know.
Though, one thing you can try is to create a custom template for testing. The instruction of creating a custom template is available here. Make it produce just an empty output (leave the contents of template.php just blank except the heading <?php notation.) and choose the custom template in the widget form. The widget should output nothing. At that point, if it still affects other widgets, it is likely an issue of the theme.
Hope it helps.
Closing due to inactivity.
Just got back into town. Confirmed this error does NOT happen on another theme I have besides WP default theme. Thanks for the quick responses.
Fwiw I have googled a little bit on this, another plugin author had the same issue, well his plugin was causing the same issue on specific themes. It had something to do with rendering the sidebars with
‘after_title’ => ‘</h2><div class=”widgetContent”>’
and closing it with
‘after_widget’ => ‘</div></div>’,
Does your plugin utilize the same functionality?
This is the entire code snipped in my theme sidebar generator file.
if(is_array($sidebars)){
foreach($sidebars as $sidebar){
$sidebar_class = sidebar_generator::name_to_class($sidebar);
register_sidebar(array(
‘name’=>$sidebar,
‘before_widget’ => ‘<div class=”widget %2$s”>’,
‘after_widget’ => ‘</div></section></div>’,
‘before_title’ => ‘<div class=”widget_title”><h2>’,
‘after_title’ => ‘</h2><span></span></div>
<section class=”section_widget”><div class=”widget_inner”>’
));
}
}
Can you try the development version, v2.3.6b01?
Download: http://downloads.wordpress.org/plugin/fetch-tweets.zip
Fixed!!!!! Excellent plugin support, thank you very much. Probably one of the best authors I have ever dealt with concerning free plugin support. Professional, fast responses, thank you. Marking as resolved.
Glad to hear that!
Would be appreciated if you could take a few minutes to write a review on the plugin. Thank you!
Rated 5 stars and added my comments, thanks again.
Thanks!! Enjoy the plugin 🙂