How to add text before the price?
-
Hi,
I want to add some text before the price. I use this code in functions.php :
function themeprefix_custom_price_message( $price ) {
global $post;
if(!is_product()) {
$text = ‘<span style=”font-size:14px; line-height: 1; color: #e70000; padding-bottom:10px; font-weight:700;” class=”precio-descuento”>החל מ: </span>’;
return $text . ‘ ‘ . $price;
}else{
return $price;
}
}
add_filter( ‘woocommerce_get_price_html’, ‘themeprefix_custom_price_message’, 10, 2 );
add_filter( ‘woocommerce_cart_item_price’, ‘themeprefix_custom_price_message’, 10, 2 );
Its work just for variation product.
If I have Affiliate product its not work. (image attached)
Did you have any idea for me Please?
Thanks a lot
Elad Mentech
Attachments:
You must be
logged in to view attached files.
Hello,
The product price is the Woocommerce functionality. Our support does not cover customization of Woocommerce.
We would recommend searching for a plugin for such purposes.
Best Regards