Home Forums WoodMart support forum No breadcrumb after selecting Page -> Disable Page title

No breadcrumb after selecting Page -> Disable Page title

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #68055

    timvanhuik
    Participant

    Hello,

    I created a page and disabled the option “Disable Page title”. I added, because of the H1 header title, a “section title” because I like that more than the default ones.

    But then I would still like the page to have the “breadcrumb” at the upper left corner.

    Is this possible?

    My current settings:

    – Page title design -> Default
    – Show breadcrumbs -> On

    Please help me out.

    Tim

    #68060

    Hello,

    It is not possible to show breadcrumbs having hidden the page heading. You can hide the page title with custom CSS and leave the breadcrumbs.

    If you want to hide page title on once certain page add the custom CSS to page settings field http://prntscr.com/k7kztf :

    .page-title.color-scheme-light .entry-title {
       display:none;
    }

    In order to hide page title globally, add this code to Theme Settings > Custom CSS

    Best Regards

    #68067

    timvanhuik
    Participant

    Hi,

    I have done the css for a specific page, cleared the cache, but displays still the main Title.

    *Please check the link in the “private area” to see yourself.

    Ps. If I do this on the global way you have mentioned, does this also impact all Titles for products etc? or just on pages?

    Please check the url provider

    #68076

    Hello,

    Try this code:

    .page-title {
        display: none!important;
    }

    This code is only for pages, you can use it globally, product title will remain.

    Best Regards

    #68077

    timvanhuik
    Participant

    That worked for the title…

    But the Breadcrumb is also gone.

    🙁

    #68088

    Hello,

    Please try this code:

    .page-title .entry-title{
    display:none;
    }

    If it does not work please provide the site admin access.

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)