MD
Size: a a a
MD
MD
add_filter( 'woocommerce_sale_flash', 'custom_sale_flash', 10, 3 );
function custom_sale_flash( $badge, $post, $product ) {
if ( ! $product->get_sale_price() || ! $product->get_regular_price() ) {
return $badge;
}
return sprintf(
'<span class="onsale">%d%%</span>',
absint( round( ( 1 - $product->get_sale_price() / $product->get_regular_price() ) * 100 ) )
);
}
M
MD
M
АК
MD
M
RP
М
AY
АС
AY
ML
АС
М
М
A
М
A