Home Forums WoodMart support forum How to hide this part breadcrumb

How to hide this part breadcrumb

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

    indrapal
    Participant

    Hi Team,

    I want to hide product name from breadcrumb, how to do it?

    I want this like “Home / Clothing / Men’s T-Shirts / Full Sleeves T-Shirts” without having the product name https://prnt.sc/kule2n

    #77211

    Hello,

    This is possible to do with custom CSS. Add this code to the Theme settings > Custom CSS:

    .breadcrumb-last{
        display:none;
    }

    Best Regards

    #77220

    indrapal
    Participant

    Thanks,

    how to hide this last “/” from product page only https://prnt.sc/kunedi

    #77239

    Hello,

    Add this code:

    .breadcrumb-link-last::after{
        display:none;
    }

    Best Regards

    #77289

    indrapal
    Participant

    Is it possible to show this price https://prnt.sc/kurxsr at left side

    #77302

    Hello,

    Try this code:

    .price ins {
        padding: 0 10px 0 0;
        float: left;
    }

    Best Regards

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

The topic ‘How to hide this part breadcrumb’ is closed to new replies.