Slide 21
Slide 21 text
@leogopal
Important ‘Parenting’ Considerations
Where possible, use the appropriate hooks and filters:
Example Filter: Change ‘Add to cart’ text
add_filter( 'add_to_cart_text', 'woo_custom_cart_button_text' );
add_filter( 'woocommerce_product_add_to_cart_text', 'woo_custom_cart_button_text' );
function woo_custom_cart_button_text() {
return __( ‘Add me to your Cart, Pweddie Pwease?’, 'woocommerce' );
}