On my site, I have a sidebar that has a tag cloud. When a user clicks on a tag, the user is then directed to a landing page housing multiple items that have that tag. On that page, the title reads “Portfolio Items”. Is it possible to change that title to the corresponding tag?
Hey NSCduclos!
Try opening up /enfold/tag.php
and change line 96 from this,
echo "<h3 class='post-title tag-page-post-type-title'>".$label."</h3>";
To this,
echo "<h3 class='post-title tag-page-post-type-title'>".single_tag_title(false, false)."</h3>";
You may have to do the same for line 56 but let us know if that works for you.
Regards,
Elliott