Skip to content
Advertisement

Check if customer has purchased something and add product to cart in WooCommerce

The code below auto add a product to cart in WooCommerce:

JavaScript

The answer Checking if customer has already bought something in WooCommerce allows to check if user has already make a purchase or not with a custom conditional function has_bought().

So what I would like is to check if the customer has ordered before and:

  • If it’s their first order, force product A into the cart OR
  • If they’ve already made one or more purchases, force product B into the cart

But I didn’t find the way to use it in my code.

Any help will be appreciated.

Advertisement

Answer

The code below uses the custom function has_bought(). It auto add to cart a different product for new customers and confirmed customers:

JavaScript

Code goes in functions.php file of the active child theme (or active theme). Tested and works.

Related: Checking if customer has already bought something in WooCommerce

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement