// ---- SHOP PAGE ---- // Remove default Add to Cart button on shop page remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); // Add custom Add to Cart button (shop/category pages) add_action( 'woocommerce_after_shop_loop_item', 'custom_shop_add_to_cart_button', 10 ); add_action( 'woocommerce_after_shop_loop_item_title', 'custom_shop_add_to_cart_button', 15 ); // fallback function custom_shop_add_to_cart_button() { global $product; echo 'Add to Cart'; } // ---- SINGLE PRODUCT PAGE ---- // Remove default Add to Cart button remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); // Add Buy Now button add_action( 'woocommerce_single_product_summary', 'custom_single_buy_now_button', 30 ); function custom_single_buy_now_button() { global $product; echo 'Buy Now'; }