Alterar o texto “Sale” que aparece em produtos que estão em promoção no WooCommerce.
/**
* change sale text
* via https://code.difluir.com/
*/
if ( ! function_exists('difluir_woocommerce_custom_sale_text') ) :
function difluir_woocommerce_custom_sale_text( $text, $post, $_product ) {
return '<span class="onsale">'.esc_attr( __('Sale', 'difluir') ).'</span>';
}
endif;
add_filter( 'woocommerce_sale_flash', 'difluir_woocommerce_custom_sale_text', 10, 3 );