Answers for "woocommerce change sale text"

PHP
0

woocommerce change sale text

<?php
add_filter('woocommerce_sale_flash', 'woocommerce_custom_sale_text', 10, 3);
function woocommerce_custom_sale_text($text, $post, $_product)
{
    return '<span class="onsale">PUT YOUR TEXT</span>';
}
Posted by: Guest on August-26-2020

Code answers related to "woocommerce change sale text"

Browse Popular Code Answers by Language