• Resolved bmford

    (@bmford)


    Hello, first post here

    I’ve been dealing with an issue with breadcrumb-links on my sites pages such as this one that link to a “parent-category” page with no content. Creating content for this page does not make sense since this is the only way someone could navigate to such a page on this site.

    For example this page displays

    Home >> About >> Our Team

    Where ‘home’ and ‘about are both breadcrumb-links, But ‘About’ is an empty page simply there for some navigational purposes I presume

    So I still want to display the ‘parent’ as it makes the website navigation clear to the user, is it possible to remove this link from ‘about’ but still display display it as the parent?

    Thank you for your time

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author learnhowwp.com

    (@themeythemes)

    Hi bmford,

    You can disable links using custom css. For this specific page you can disable the link using the below css code.

    .lwp-breadcrumbs > span > span:nth-child(3) a {
    pointer-events: none;
    }
    You can add the code in page settings > custom css. So it is only applied to this page.

    https://prntscr.com/101lvvm

    However this is not something I can provide support for as each page might need different css code depending on the number of parent pages and which page needs to be disabled.

    Hope it helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Remove links to parent- category in breadcrumbs’ is closed to new replies.