Hi,
I’m using the Blockshop theme and can’t figure out how to add text before or after the compare to price, I just want to add Retail or Traditional Retail next to it.
Any help is greatly appreciated.
Thanks
Website: https://geneboutique.com/collections/necklaces/products/ida
psw: dewblo
To add text after compare to price, please add this code below in your Sale channels > Online store > Themes > Edit codes > Assets > theme–critical.css
Add this code at the bottom of theme–critical.css to make text appear after compare price
.product-price--compare::after {
content: "Retail";
padding-left: 8px;
}
To add text before, please add this code
.product-price--compare::before {
content: "Retail";
padding: 0 8px;
}