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 […]
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; […]
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 […]
Using short code [products] you can create custom product or shop page in woocommerce. Some of the most useful short codes [woocommerce_cart] – shows the cart […]
To Create a location restrict based woocommerce website , you need to use some code in function file. Step1: your code will be as follow add_action( […]