Bug found in the tag listings (FIX)
Hi
I clicked on a tag on my site and the RSS Feed link was broken, it had no slash in it which caused it to look like this:
Siite.com/tags/tagnamefeed
Instead of
site.com/tags/tagname/feed
To fix this, change taxonomy-ad_tag.php line 25 from
PHP Code:
<div id="catrss"><a href="<?php echo get_term_link($term, $taxonomy); ?>feed/">
to
PHP Code:
<div id="catrss"><a href="<?php echo get_term_link($term, $taxonomy); ?>/feed/">
It now is fixed and you get no page not found error. I will post any fixes to any other bugs that I find (and know how to fix them!)
Thanks