Abandoned cart recovery made simple with Jilt [tl;dr review]

Abandoned cart recovery for WooCommerce and Easy Digital Downloads used to involved a jumble of janky extensions and a couple crossed fingers. That’s a thing of the past.

Here’s a quick review of Jilt, from the reputable SkyVerge. Continue reading “Abandoned cart recovery made simple with Jilt [tl;dr review]”

Does your minimum order amount not include shipping+tax? Here’s the WooCommerce code.

If you run a WooCommerce store and require a minimum order amount before the customer can check out, you may have come across the WooCommerce documentation that includes code for this requirement. It turns out, this code includes shipping and tax in the “order total.” If you require a minimum order amount for the subtotal only, you’ll need slightly different code.

Here’s the code you’ll want to use in your functions.php code instead:

https://gist.github.com/scottbuscemi/64211d3fd582ba2d55ef5c3977465c14

This code will ensure that the customers are meeting that minimum with just the price of the products they’re purchasing.

Different companies have different requirements and you can choose which is best for you. Despite Woo’s documentation only showing the ‘complete total’ code, I would recommend going the subtotal route instead since you’re not benefiting from shipping and tax fees.

Hide shipping methods when free shipping is available: WooCommerce 2.6 compatibility

If your store offers free shipping, WooCommerce’s default configuration is to show the free shipping option to the customer on checkout, but not automatically select it or remove the paid shipping options. There’s a code snippet that you can add to your theme’s functions.php file to hide other shipping methods when free shipping is available and we’d recommend this to all stores offering free shipping.

With WooCommerce 2.6 being released last month, you may have updated your store and noticed that this code snippet stopped working properly. Turns out, the new version of WooCommerce requires an updated code snippet, even if you haven’t switched over to the new Shipping Zones system. The documentation has been updated on WooCommerce’s site – or here it is for easy copy and pasting:

https://gist.github.com/mikejolley/7ced4986b0b9c4b1fffedbe3e6bb6860#file-functions-php