I want to remove the blank <h2> tag that this widget generates. I have inserted my own to control the Title of the widget, but can't find where it is adding. I have 'ok' skills in PHP and can normally tweak widgets, but this has me flummoxed.
I want to remove the blank <h2> tag that this widget generates. I have inserted my own to control the Title of the widget, but can't find where it is adding. I have 'ok' skills in PHP and can normally tweak widgets, but this has me flummoxed.
Look for
echo $before_widget;
echo $before_title;?>
<?php echo $after_title;
echo wpnewsslider_getwidget();
echo $after_widget;
Replace with
echo $before_widget;
echo $before_title;
?>
<span id="newssection">News box</span>
<?php
echo $after_title;
echo wpnewsslider_getwidget();
echo $after_widget;
that how i fix Title problem
The h2 tag will now have a title in between it.
Think the plug-in has not been updated in ages otherwise this simple problem should have been fixed, I am no expert in plug-in's or PHP far from it but even I found problem within 5 minutes and fixed it as above.
I use this on my website and it works great with no problems at all.
Hello
how to change the language in the Plugin: WP News Slider
This topic has been closed to new replies.