Where to add custom Woocommerce code
-
Hello! Regarding woo commerce in the Virtue Theme – can anyone recommend some custom code so that I may change the text displayed for the word “SALE” – I would like to be able to change that text if needed (i.e. “Sale Select Styles or 10% OFF Long Sleeves) – have to see what fits and looks okay.
Here is what I found elsewhere on the forum regarding this code for use in another theme:
add_filter(‘woocommerce_sale_flash’, ‘avia_change_sale_content’, 10, 3);
function avia_change_sale_content($content, $post, $product){
$content = ‘<span class=”onsale”>’.__( ‘Sale custom text!’, ‘woocommerce’ ).'</span>’;
return $content;
}Also, please can you recommend in which file I should put the code. Thank you!
The topic ‘Where to add custom Woocommerce code’ is closed to new replies.
