Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save flabernardez/52b573fe0c54a13dedf1a19edf348ccf to your computer and use it in GitHub Desktop.
Save flabernardez/52b573fe0c54a13dedf1a19edf348ccf to your computer and use it in GitHub Desktop.
#woocommerce Cambiar el texto de "oferta" en los productos rebajados
<?php
function dinapyme_wc_modificar_texto_oferta( $texto ) {
return str_replace( __( 'Sale!', 'woocommerce' ), __( '¡Promoción!', 'woocommerce' ), $texto );
}
add_filter( 'woocommerce_sale_flash', 'dinapyme_wc_modificar_texto_oferta' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment