Created
March 26, 2014 04:24
-
-
Save claudiosanches/9776915 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