Skip to content

Instantly share code, notes, and snippets.

@monecchi
Forked from claudiosanches/functions.php
Created February 23, 2018 20:02
Show Gist options
  • Save monecchi/ba529e073efc04e94ce6cf1e81fb2f8c to your computer and use it in GitHub Desktop.
Save monecchi/ba529e073efc04e94ce6cf1e81fb2f8c to your computer and use it in GitHub Desktop.
WooCommerce - Botão orçar
<?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