Are old failed payments that are eventually paid for causing havoc with your reporting workflow because they get missed? WooCommerce offers a variety of action hooks on order status changes that can be used to dynamically change the order date. As an example of this, see the code snippet below: Not sure what to do with […]
Automatically Mark Order as Not Exported on Status Change
Automatic exports with the Customer/Order CSV Export will not export orders that have previously been marked as exported. This is intentional to prevent duplication of exported orders. However, consider this case: An export was done which includes orders in a failed status. The automatic export configuration is changed to only include orders in a processing status The […]
Japanese State Names in Order/Customer CSV Export
3 November 2016 Update: As of WooCommerce Customer/Order CSV Export version 4.1, this will no longer be needed as version 4.1 will be using a state name instead of the code for the five countries which use this type of format. Japanese addresses are a bit of a special case – apparently they roll a little bit differently. […]
Move WooCommerce Box Office Form Fields
By Default, WooCommerce Box Office renders the add to cart/buy ticket now button before the form fields. In some cases this may be undesirable. If you would rather render the fields before the button, use the below snippet of code: Not sure what to do with code snippets? See What Do I Do With These […]
Complex Pricing in WooCommerce Bookings
WooCommerce Bookings provides a way for people to sell time based products and it can be made to work with a wide variety of use-cases. Unfortunately, in order to be able to work with this wide range of use-cases the configuration can be quite challenging and the interface can get difficult to use to set up […]
Hide WooCommerce sub menus from Shop Managers
You may wish to hide certain sub menu items from your Shop Managers, WooCommerce Settings, Add-ons and the System Status report for example. The snippet below will do exactly that, but you can adjust as necessay by adding or removing submenu slugs from the `$remove` array. Add this snippet to your theme’s functions.php file or […]
Add Custom Subscription Length
By default, WooCommerce Subscriptions, provides a large number of subscription durations that should be sufficient for most users. However, some users may wish to provide custom subscription lengths. Fortunately WooCommerce Subscriptions provides a filter called woocommerce_subscription_lengths which can be leveraged to add custom subscription durations. Below is an example of how to implement this filter: […]
Get Full Country Name in CSV Export
The Order/Customer CSV Export extension is often used for forwarding orders to fulfillment services or for generating mailing labels for shipping products. If your shop is based in the U.S. and you are shipping products to overseas locations, the U.S. postal service requires the country name to be fully spelled out, but by default, the […]
WooCommerce Database Version Out of Sync?
For various reasons, your WooCommerce database update might fail which will lead to your database version being out of sync with the WooCommerce version. You can force the database update by hitting this url: wp-admin/admin.php?page=wc-settings&do_update_woocommerce=1. That probably won’t solve the underlying issue of why the update failed, but you can turn on debugging or check your log file […]
WooCommerce Powered Haggling
Moving, Must Sell The arguments in favor of using WooCommerce to power my moving/yard sale were many. I can accept various payment methods, items which have been sold will automatically be marked, etc, etc, etc. One feature of a yard sale that is hard to pull of via an online solution is the haggling part […]