How to hide this part breadcrumb
-
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
Hello,
This is possible to do with custom CSS. Add this code to the Theme settings > Custom CSS:
.breadcrumb-last{
display:none;
}
Best Regards
Thanks,
how to hide this last “/” from product page only https://prnt.sc/kunedi
Hello,
Add this code:
.breadcrumb-link-last::after{
display:none;
}
Best Regards
Is it possible to show this price https://prnt.sc/kurxsr at left side
Hello,
Try this code:
.price ins {
padding: 0 10px 0 0;
float: left;
}
Best Regards
The topic ‘How to hide this part breadcrumb’ is closed to new replies.