Вот мой код:
Код: Выделить всё
function filter_woocommerce_get_regular_price() {
global $product;
if (is_product_category ('book-fair')) {
return $product->get_regular_price();
}
return $product->get_sale_price();
}
Подробнее здесь: https://stackoverflow.com/questions/628 ... oocommerce