thunderup Active member Jul 8, 2018 #1 How do you edit the register link to go directly to the /register page rather than an overlay?
Russ Well-known member Jul 10, 2018 #2 I helped toodlez via conversation but for anyone else: Template PAGE_CONTAINER: Find: Code: <a href="{{ link('login') }}" class="offCanvasMenu-link" rel="nofollow" data-xf-click="overlay" data-menu-close="true"> Replace with: Code: <a href="{{ link('login') }}" class="offCanvasMenu-link" rel="nofollow"> Then also same template for the register link as well if you want: Find: Code: <a href="{{ link('register') }}" class="offCanvasMenu-link" rel="nofollow" data-xf-click="overlay" data-menu-close="true"> Replace with: Code: <a href="{{ link('register') }}" class="offCanvasMenu-link" rel="nofollow"> Upvote 0 Downvote
I helped toodlez via conversation but for anyone else: Template PAGE_CONTAINER: Find: Code: <a href="{{ link('login') }}" class="offCanvasMenu-link" rel="nofollow" data-xf-click="overlay" data-menu-close="true"> Replace with: Code: <a href="{{ link('login') }}" class="offCanvasMenu-link" rel="nofollow"> Then also same template for the register link as well if you want: Find: Code: <a href="{{ link('register') }}" class="offCanvasMenu-link" rel="nofollow" data-xf-click="overlay" data-menu-close="true"> Replace with: Code: <a href="{{ link('register') }}" class="offCanvasMenu-link" rel="nofollow">
thunderup Active member Jul 21, 2018 #3 @Russ this is still triggering an overlay for me whether I hard edit in the template, or use a template modification Upvote 0 Downvote
@Russ this is still triggering an overlay for me whether I hard edit in the template, or use a template modification