Answer the question
In order to leave comments, you need to log in
How to make additional criteria for woocommerce product?
Good day. How to make a choice of packaging and product size as in the screenshot? When choosing different options, the price also changes.
Did through attributes, it turned out not quite right.
Answer the question
In order to leave comments, you need to log in
Well, yes, in the admin panel they are my attributes. do not fit because the price starts to be displayed through a dash
add_filter('woocommerce_variable_price_html', 'dco_woocommerce_variable_price_html');
function dco_woocommerce_variable_price_html($price) {
$array = explode(' – ', $price);
return '<span class="price-from">от</span> ' . $array[0];
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question