Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created March 26, 2014 04:24
Show Gist options
  • Save claudiosanches/9776915 to your computer and use it in GitHub Desktop.
Save claudiosanches/9776915 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