Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Обучение для смены профессии, роста в карьере и саморазвития
add_filter( 'woocommerce_sale_badge_text', 'show_discount_percentage_badge', 10, 2 ); function show_discount_percentage_badge( $sale_text, $product ) { if ( $product->is_type( 'simple' ) || $product->is_type( 'external' ) ) { $regular_price = (float) $product->get_regular_price(); $sale_price = (float) $product->get_sale_price(); if ( $regular_price > 0 ) { $percentage = round( ( ( $regular_price - $sale_price ) / $regular_price ) * 100 ); return sprintf( __( '-%s%%', 'your-textdomain' ), $percentage ); } } return $sale_text; }
Источник тута