Home Forums Pro Themes Photo Perfect Pro Navigation question

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #21995
    timned88
    Participant

    Is it possible to turn off the navigation/breadcrumbs on certain pages but have them active on the rest of the site? How would I do that?

    #21996
    wensolutions
    Keymaster

    Hello,

    Please provide us with your Site URL and the list of pages where you would want to disable the breadcrumb so that we can provide you with specific code to fix your problem.

    Best regards.

    #22010
    timned88
    Participant

    My site is themagicinpixels.com. I would like to disable the navigation for everything under the bbpress plug-in, which should be in the/forums subdirectory. The breadcrumbs are fine pretty much anywhere else.

    #22065
    wensolutions
    Keymaster

    Hello @timned88,

    We have inspected your website and it looks like the breadcrumb option is currently disabled in your website including your forum pages.

    To disable the breadcrumb display only in the forum pages, please paste in the following custom CSS in your Admin Dashboard > Appearance > Customize > Theme Options > Advanced Options > Custom CSS Field :

    body.bbpress #crumbs {
        display: none;
    }

    This will remove the breadcrumb navigation only from pages used by bbpress forum plugin and will be displayed on all other pages.

    Hope this Helps,

    Best Regards !!

    #22082
    timned88
    Participant

    Thanks! That seemed to work for the interior forum pages but not the forum index page (themagicinpixels.com/forums). Any ideas?

    #22124
    wensolutions
    Keymaster

    Hello,

    As the index page does not contain the bbpress class in its body, we will need to target the CSS to the page specifically using its id.

    Please add the following custom CSS to disable the breadcrumb display in the forum index page also :

    body.page-id-106792 #crumbs {
        display: none;
    }

    Best Regards.

    #22561
    timned88
    Participant

    that did it. thank you very much.

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.