How to Add Buy Now Button in WooCommerce: With and Without Plugin

Are you the Business owner that operates on the Internet? Are you looking for ways to increase your customer base, increase conversions, and increase revenue? Use pop-ups to remind visitors to sign up for your email list, exit-intent pop-ups to collect email addresses, or newsletters for even more control.

What if there were additional ways to increase the performance of your store with just a few clicks? One such way is using a Quick Buy Now Button plugin for WooCommerce. We’ll go over how to add a WooCommerce buy now button to your website today.

Add Buy Now Button in WooCommerce

There are two basic methods to add the buy now button in WooCommerce.

  1. Using WooCommerce Buy Now Button Plugin
  2. Adding Buy Now Button in WooCommerce Programmatically

Comparison of Both Methods

FeaturesProgrammatically Implemented SolutionQuick Buy Now by Addify
Redirect to customer’s cartNoYes
Redirect to third-party storesNoYes
Customize buy now buttonNoYes
Add buy now anywhere with shortcodeNoYes
Enable/Disable from product pageNoYes
Replace with add to cartYesYes
Add quick buy now for specific productsYesYes
Add quick buy now for specific categoriesYesYes

Method #1: Quick Buy Now Button for WooCommerce by Addify

Quick Buy Now Button for WooCommerce makes the checkout process easier. With a single click, your customers can skip the cart step and go straight to the checkout page – or any other destination you specify. You can still send customers to their carts, checkout pages, or a different external link. 

With this plugin, you can adjust button text, redirect destination, and position, as well as display the Buy Now button for all products or only specific ones. You can create separate links for each Buy Now button using product-specific settings.

Installation

  1. Download the .zip file from your WooCommerce account to begin installation.
  2. At the WordPress Admin, go to Plugins, and click on Add New. Upload the Plugin file you have downloaded.
  3. Click Install Now and then Activate to proceed further.

Setup and Configuration

You’ll see the “Quick Buy” section in the WooCommerce menu, as well as quick buy options in the product edit page, as you activate Quick Buy Now Button for WooCommerce.

Adjust Product Level Settings

Using the WooCommerce Quick Buy Now Button plugin, you can configure settings at the product level:

  • Customize Buy Now button text
  • Choose redirect location (Cart, Checkout, or Any Custom Link)
  • Replace the “Add to Cart” with the Buy Now Button
  • Enable/Disable Quick Buy at product level

Adjust Global Settings

The Global settings of the Quick Buy Now Button for WooCommerce allows you to configure various options for multiple products in bulk. These options include:

  • Change Buy Now Button Label
  • Select redirect location (Cart, Checkout, or Any Custom Link)
  • Set product quantity for the quick buy button
  • Replace “Add to Cart” with the Buy Now button
  • Show button for all or specific products and categories

Configure Buy Now Button 

From the button settings, you can choose to configure the following options:

  • Customize button text to display on Quick Buy button
  • Select a theme style or custom style for the Quick buy button
  • Show/hide button from shop & product pages
  • Select button position as before or after the checkout button
how to add woocommerce quick buy now button

Choose from Multiple Shortcodes

WooCommerce Quick Buy Now Button plugin provides multiple default shortcodes which can be used based on your requirements.

add buy now button in woocommerce

Method #2: Add Buy Now Button in WooCommerce Programmatically

Let’s take a look at the program-based implementation of Buy Now Button in WooCommerce.

  // Replace loop page add to cart button with buy now button

add_action( 'init', '_change_loop_add_to_cart', 10 );

function _change_loop_add_to_cart() {

remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

add_action( 'woocommerce_after_shop_loop_item', '_buy_now_button', 10 );

}

function _buy_now_button() {

printf( '<a href="#" class="button buy-now-button">%s</a>', esc_html__('Buy Now', 'text-domain') );

}

add_action(

woocommerce_simple_add_to_cart‘,

function(){

remove_action( 'woocommerce_simple_add_to_cart', 'woocommerce_simple_add_to_cart', 30 );

add_action( 'woocommerce_simple_add_to_cart', 'replace_add_to_cart_text',30 );

},

1 );

add_action(

'woocommerce_variable_add_to_cart',

function(){

remove_action( 'woocommerce_single_variation', 'woocommerce_single_variation_add_to_cart_button', 20 );

add_action( 'woocommerce_single_variation', 'replace_add_to_cart_text',30 );

},

1 );

function replace_add_to_cart_text(){

return sprintf( '<a href="#" class="button buy-now-button">%s</a>', esc_html__('Buy Now', 'text-domain') );

}

Conclusion

To summarize, we hope that our guide on How to Add WooCommerce Buy Now Button will assist you in expanding the success of your online business by providing the finest buying experience. Attracting more customers is no longer a challenging task in this method.

Subscribe to Our Newsletters.

Be the first to get an exclusive offer and the latest news.