January 31, 2023
How to show product variation dropdowns in product archive page

How to show product variation dropdowns in product archive page

You can add the code to display variation dropdowns in the WooCommerce archive page to the functions.php file of your child theme. Here’s how you can […]
October 29, 2021
Set minimum order amount in woocommerce

Set minimum order amount in woocommerce

Open Appearance> Theme editor> paste the code as below add_action( ‘woocommerce_check_cart_items’, ‘required_min_cart_subtotal_amount’ ); function required_min_cart_subtotal_amount() { // HERE Set minimum cart total amount $minimum_amount = 250; […]
January 18, 2021
Clear cart data before adding new

Clear cart data before adding new

How to clear cart data before adding new item to the cart ? Solution: Login to your wordpress backend. Go to apperance > Theme Editor > […]
September 6, 2020
Redirect to custom url after woocommerce checkout

Redirect to custom url after woocommerce checkout

How can you redirect clients to a perfectly looking, custom, item explicit thank you page? Fortunately you can add some PHP code to your functions.php and […]