Change the add to cart text to shop now in WooCommerce

Change the add to cart text to shop now in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

function change_add_to_cart_text() {
    return __( 'Shop Now', 'woocommerce' );
}
add_filter( 'woocommerce_product_single_add_to_cart_text', 'change_add_to_cart_text' );
add_filter( 'woocommerce_product_add_to_cart_text', 'change_add_to_cart_text' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.