-
-
Save monecchi/ba529e073efc04e94ce6cf1e81fb2f8c to your computer and use it in GitHub Desktop.
WooCommerce - Botão orçar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function cs_add_to_cart_text( $text ) { | |
return __( 'Orçar' ); | |
} | |
// Loop. | |
add_filter( 'woocommerce_product_add_to_cart_text', 'cs_add_to_cart_text' ); | |
// Single. | |
add_filter( 'woocommerce_product_single_add_to_cart_text', 'cs_add_to_cart_text' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment