WooCommerce: Duplicate Add to Cart Button @ Single Product Page

In case you have very long single product pages, it may be helpful to show the Add to Cart form at the bottom of the page or even inside the description tab.

Thankfully this is pretty easy and only requires one line of code. The only thing that you may want to change is the hook name, which defines the position of the button, and the priority, which defines the relative position of the element in case there are other ones “hooked” onto the same hook.

In this example, we will place the button at the very bottom of the page, below tabs, upsells and related products. Enjoy!

Here’s a way to output the Add to cart form again at the bottom of the WooCommerce Single Product page

PHP Snippet: Display a Second Add to Cart Button @ WooCommerce Single Product Page

Notes:

  1. woocommerce_after_single_product_summary” places the button after the product summary. For the whole list of WooCommerce single product page hooks, check here
  2. 9999” places the button at the very bottom of the “woocommerce_after_single_product_summary” position. If you check again the visual hook guide for the single product page, you will see that tabs are hooked to “woocommerce_after_single_product_summary” with priority = “10”, upsells = “15” and related products = “20”. We could have used “21”, and that would have still worked. I picked “9999” to be almost sure I place the button at the very bottom in case other plugins output additional content below the related products
/**
 * @snippet       Add Another Add to Cart Form @ Single Product
 * @how-to        businessbloomer.com/woocommerce-customization
 * @author        Rodolfo Melogli, Business Bloomer
 * @compatible    WooCommerce 7
 * @community     https://businessbloomer.com/club/
 */

add_action( 'woocommerce_after_single_product_summary', 'woocommerce_template_single_add_to_cart', 9999 );

Where to add custom code?

You should place custom PHP in functions.php and custom CSS in style.css of your child theme: where to place WooCommerce customization?

This code still works, unless you report otherwise. To exclude conflicts, temporarily switch to the Storefront theme, disable all plugins except WooCommerce, and test the snippet again: WooCommerce troubleshooting 101

Related content

Rodolfo Melogli

Business Bloomer Founder

Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza. Follow @rmelogli

2 thoughts on “WooCommerce: Duplicate Add to Cart Button @ Single Product Page

  1. Hi, thank you for this. It works perfectly. It however also duplicates the contents of the short product description. What would be the way around this please?

    1. Thanks for your comment Aurelie! This is not possible, I’m only calling the function that prints the button and nothing else, so the problem is elsewhere

Questions? Feedback? Customization? Leave your comment now!
_____

If you are writing code, please wrap it like so: [php]code_here[/php]. Failure to complying with this, as well as going off topic or not using the English language will result in comment disapproval. You should expect a reply in about 2 weeks - this is a popular blog but I need to get paid work done first. Please consider joining the Business Bloomer Club to get quick WooCommerce support. Thank you!

Your email address will not be published. Required fields are marked *