How to swap regular price and sale price positions?
-
Hi there,
I would like to swap regular price and sale price positions so that the regular price comes first.
I see that this function needs to be overwritten.
function get_price_html_from_to( $from, $to ) { return '<del>' . ((is_numeric($from)) ? woocommerce_price( $from ) : $from) . '</del> <ins>' . ((is_numeric($to)) ? woocommerce_price( $to ) : $to) . '</ins>'; }
How could I safely do it in functions.php of my child theme so that I do not to have to edit it in woocommerce files.
Thanks in advance for your help.
regards,
Cichy
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to swap regular price and sale price positions?’ is closed to new replies.