Code-Snippets-Functions/Execute a function on a child site/WooCommerce/add-wording-before-add-to-cart.txt

5 lines
174 B
Text

add_action( 'woocommerce_before_add_to_cart_button', 'wc_before_add_to_cart_btn' );
function wc_before_add_to_cart_btn(){
echo 'Spend at least $20 to get free shipping';
}