Skip to content

Snippet: Alter The WooCommerce Single Product Add To Cart Text

function my_woocommerce_product_single_add_to_cart_text() {
    return 'YOUR CUSTOM TEXT';
}
add_filter( 'woocommerce_product_single_add_to_cart_text', 'my_woocommerce_product_single_add_to_cart_text', 20 );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top