String before price only for variable products
-
Hi
I need to show the string “From” before price on category pages on variable pdoucts.
So far the best I accomplished was to show the “From” string in all producta via functions.php:
function change_product_price_html($price){ $newPrice = esc_html__( 'desde ', 'chaitan' ); $newPrice .= $price; return $newPrice; } add_filter('woocommerce_get_price_html', 'change_product_price_html');
How can I show this string only for variable products?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘String before price only for variable products’ is closed to new replies.