Skip to:
Content
Pages
Categories
Search
Top
Bottom

Next link on bottom of forum/topic pages


  • ikspem
    Participant

    @ikspem

    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?

Viewing 5 replies - 1 through 5 (of 5 total)

  • Robin W
    Moderator

    @robin-w

    sounds theme related – link to an example on your site please


    ikspem
    Participant

    @ikspem

    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 –>


    Robin W
    Moderator

    @robin-w

    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


    Robin W
    Moderator

    @robin-w

    solution is

    .single-forum .post-navigation .nav-links {
                   display: none !important;
    }
    
    .single-topic .post-navigation .nav-links {
    	display: none;
    }
    

    ikspem
    Participant

    @ikspem

    You Rock, Robin!

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.
Skip to toolbar