25% off ProSNIPC25OFF

Change WooCommerce Add-to-Cart Button Text

Replaces the default "Add to cart" button label with "Buy Now" on both single product and archive pages.

PHPby SnipCraft
php
<?php
if ( ! class_exists( 'WooCommerce' ) ) {
    return;
}
add_filter( 'woocommerce_product_single_add_to_cart_text', 'scseed_wc_cart_btn_text' );
add_filter( 'woocommerce_product_add_to_cart_text', 'scseed_wc_cart_btn_text' );
function scseed_wc_cart_btn_text( $text ) {
    return __( 'Buy Now', 'textdomain' );
}
#add-to-cart#frontend#shop#ux#woocommerce