Promjena teksta oznake Akcija! u Super cijena!

[php]
// Replace Sale! with custom text

add_filter( ‘woocommerce_sale_flash’, ‘wc_akcija_u_super_cijena’ );

function wc_akcija_u_super_cijena( $html ) {
return str_replace( __( ‘Sale!’, ‘woocommerce’ ), __( ‘Super cijena!’, ‘woocommerce’ ), $html );
}
[/php]

Leave a Reply

Your email address will not be published. Required fields are marked *

Scroll to Top