Archived topic
Add custom text before price for furniture category.
7 replies · Started by _blank on April 27, 2020
Hi
My client would like to add the text "From" before the Price for just the furniture category archive.
Is it best to use PHP snippet for woocommerce_after_shop_loop_item_title to do this or can you help with the code?
Thanks
Scott
Hi there,
Simplest way is with with some CSS like so:
.woocommerce ul.products li.product .price .amount:before {
content: 'From ';
}
Hi David,
Thanks that does work for every product.
But they want to do it just to the "Furniture" category
https://www.salvesengraham.com/product-category/furniture/
Thanks
Scott
Hi there,
Try this instead:
.woocommerce.term-furniture ul.products li.product .price .amount:before {
content: 'From ';
}
Hi Tom,
That worked thanks!
I just noticed on the Furniture product pages we have a row of related products in that category too.
Tried added this CSS but didn't work.
.woocommerce.term-furniture .woocommerce-LoopProduct-link .related ul.products li.product .price .amount:before {
content: 'From ';
Hope you can help.
Thanks
Scott
Try this CSS instead:
.woocommerce ul.products li.product_cat-furniture .price .amount:before {
content: 'From ';
}
Hi David,
Thats brilliant worked perfectly.
Many Thanks
Scott
Glad we could be of help