Issue with quantity suffix
-
Hi,
I need to solve the issue that is created by placing the quantity suffix next to the price.
I used a Hook that allows this, but it doesn’t work for me.
if ( ! is_admin() ) {
add_filter( ‘woocommerce_get_price_suffix’, ‘upw_add_price_suffix’, 10, 4 );
}
function upw_add_price_suffix( $html, $product, $price, $qty ) {
$suffix = $product->get_meta( ‘_upw_quantity_suffix’ );
return $suffix ? $html . ‘ x ‘ . $suffix : $html;
}My intention is that “x kg” appears next to the price.
The theme I use is Flatsome
Please help me with the hook to put the suffix on the right side of the price.
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Issue with quantity suffix’ is closed to new replies.