WooCommerce Order Admin Calc Line Totals
As of version 1.6.5.2 at least, WooCommerce does not provide a way to automatically calculate the Line Subtotal and Line Total values for a given product quantity, when creating or updating an order...
View ArticleHow to Add Dimension Units to WooCommerce
This post was prompted by a recent question on the blog regarding how best to add custom units to the WooCommerce dimensions or weight options. While not a difficult thing to do, adding units is not...
View ArticleDon’t Share Terms Between WordPress Taxonomies
By default WordPress will reuse terms with the same name and slug between different taxonomies. For instance, if you add the term ‘red’ as a tag, and then add the category ‘red’, the same wp_terms...
View ArticleHow to Override WooCommerce Widgets
While it’s not technically possible to override a WordPress widget (and remember WooCommerce widgets are nothing more than WordPress widgets), WooCommerce is just so extendable and pluggable and...
View ArticleTweaking the WooCommerce Order Admin: Searching For Custom Fields
The WooCommerce Order Admin allows you to search for ordres by the following fields: order key billing first name billing last name billing company billing address 1 billing address 2 billing city...
View ArticleGuide to Migrating Your Plugin to WooCommerce 2.0
With the release of WooCommerce 2.0 becoming more imminent (well, maybe not quite imminent yet, but certainly drawing nearer), those of us with WooCommerce plugins need to start work on getting them...
View ArticleWordPress Get DB Table Column Names
To get the column names for a MySQL database table in WordPress, use the following: global $wpdb; $table_name = $wpdb->prefix . 'posts'; foreach ( $wpdb->get_col( "DESC " . $table_name, 0 ) as...
View ArticleSet a Default Stock Quantity for WooCommerce Variations
Here’s a quick little snippet that you can make use of if you want to set a default stock quantity for any newly added WooCommerce product Variations. This can be useful when bulk-adding variations...
View ArticleAdd Custom Options to WooCommerce Settings
This question comes in from blog reader Wilgert (thanks Wilgert!): could you help me find some simple code to add a custom option field to the general settings tab of the woocommerce admin area?...
View ArticleTranslating a WordPress Plugin on the Command Line Step by Step
The purpose of this article is to provide a quick and easy to follow step-by-step guide to extracting text strings from a WordPress plugin for translation from the command line. Although this is...
View Article