Although I have a solid grasp of HTML & CSS, I am encountering some difficulties with the Tag Page feature on Tumblr. Specifically, I want to change the heading displayed on the /tagged/vld tag page without altering the URL. Currently, the heading is generated from the {tag} and reads as "vld", but I would like it to be "All Designs" instead. How can I achieve this customization for this specific tag page?
{block:TagPage}
<div class="tagtitle">{tag}s</div>
{/block:TagPage}
I attempted to modify the code by using:
{block:TagPage}
<div class="tag" id="{Tag}">All Designs</div>
{/block:TagPage}
Another approach I took was:
<script>
switch(window.location.pathname) {
case "/tagged/vld":
$('.tagtitle').text('All Designs');
break;
}
});
</script>
Unfortunately, neither method yielded the desired result - the tag is still showing up as the heading. Feel free to check out my blog at vintagelovedesigns.tumblr.com