I used a swboc widget and left it's title blank, but an empty h3 tag is still being rendered on the front end. Is there a way to remove this?
http://wordpress.org/extend/plugins/smart-wysiwyg-blocks-of-content/
I used a swboc widget and left it's title blank, but an empty h3 tag is still being rendered on the front end. Is there a way to remove this?
http://wordpress.org/extend/plugins/smart-wysiwyg-blocks-of-content/
I found a fix. On line 51 of smart-wysiwyg-blocks-of-content.php
Replace:
echo $before_title.$swboc_title.$after_title;
with:
if ($swboc_title !== '') {
echo $before_title.$swboc_title.$after_title;
}You are absolutely right. Will fix this in the next release.
This topic has been closed to new replies.