Next link on bottom of forum/topic pages
-
On the bottom of the Forum Page, I see a link “Next forum”, which leads me to the 1 forum I have :). Pretty useless ;).
On the bottom of the topic Page, I see a link “Next topic”, which always leads me to 1 specific topic. No other topic is presented.
I’ve tried repairing freshness of forum (Backend > Tools > Forum), no luck
My question:
– Can I easily switch those links off?
– If not easy; how can I fix it so that it becomes useful?
-
sounds theme related – link to an example on your site please
Hi Robin,
Forum is logged-in users only 🙁
Theme is Astra.
Maybe the code is helpful?
Code from the Forum-Next-Link:
<nav class=”navigation post-navigation” role=”navigation” aria-label=”Messages”>
<h2 class=”screen-reader-text”>Navigation</h2>
<div class=”nav-links”><div class=”nav-next”>Next Forum<span class=”ast-right-arrow”>→</span></div></div>
</nav> </main><!– #main –>Code from the Topic-Next-Link:
<nav class=”navigation post-navigation” role=”navigation” aria-label=”Messages”>
<h2 class=”screen-reader-text”>Navigation</h2>
<div class=”nav-links”><div class=”nav-next”>” rel=”next”>Next Subject <span class=”ast-right-arrow”>→</span></div></div>
</nav> </main><!– #main –>ok, hard to help without a link – a bit like trying to fix a car by email 🙂
try
#bbpress .post-navigation { display : none !important ; }add this to your theme’s custom css
solution is
.single-forum .post-navigation .nav-links { display: none !important; } .single-topic .post-navigation .nav-links { display: none; }You Rock, Robin!
- You must be logged in to reply to this topic.