XF 1.5 Adding button/link to bottom of Thread View...

Jwrbloom

Active member
I've done some searching and will continue to do so, but I'm looking to add a Button on the Thread View template that will take my Users back to the Topic View page. My Users feel like it's easier to get back there via their phone, while updating which topics have been viewed already. (They don't want to use the back button or scroll down to the breadcrumbs.)
 
Any back to top button either has to float (and so be available all the time to avoid scrolling)

e.g. https://xenforo.com/community/resources/back-to-the-top.525/

or else be in every post.

I have added the following to the bottom of the post template:

Code:
<a href="{$requestPaths.requestUri}#navigation" class="item control">{xen:phrase go_to_top}</a>
            </div>

Just after this bit:

Code:
title="{xen:phrase reply_quoting_this_message}"><span></span>{xen:phrase reply}</a>
                </xen:if>
                </xen:hook>
 
At the bottom of a topic/thread, just above the Quick Reply window, I'd like a button that says, Return to Forum Topics, like in the image below. I've been able to create and add the xen: phrase return_to_topics, but I the link, preferably a button, that takes the User back to the page to see all the topics.




Screen Shot 2016-05-06 at 11.19.02 AM.webp
 
Top Bottom