I am not sure what title to give to this topic, so i apologize.
I am having WP blog running customized theme, and i installed Wordpress Popular Post Plugin. It works as it should, but just after the link, it displays weird character that shouldnt be there ":". It looks like this:
<a href="#"class="wpp-post-title" target="_self">Post Title Link</a>
:
<span class="wpp-excerpt">WThis is post excrpt bla bla</span>
I really dont have any idea why it is showing there.If anybody have any suggestion/advice, i would be very grateful. This is the link, Top Section in the right sidebar
The answer you're looking for is in row 1140 of the plugin file.
$excerpt = ": <span class=\"wpp-excerpt\">" . $excerpt . "</span>";
Just remove the colon and you're done.