FB Pixel
Bug in WordPress 4.3 causing high CPU load for some sites v2
Over the weekend we became aware of a bug (#33423) in the recently released 4.3 version of WordPress that can cause high CPU load for some sites. A fix for this bug will be included in the first maintenance release, 4.3.1. If you are a GoWP customer your site has already been patched to address this ...

Read more »

Lucas Karpiuk

WooCommerce Product Variation v2
If you have a WooCommerce product with a lot of variations that are all the same price, entering/updating the price can be a little frustrating as you must update the price manually for each variation. For a product with three colour and size attributes this is only nine total variations, but if you could update ...

Read more »

Lucas Karpiuk

WooCommerce Wholesale Product Bundles
A few weeks back one of our customers began using the WooCommerce Product Bundles plugin and reported an issue to us where the cart total was double what it should be. After some investigation we found there to be a conflict with the WooCommerce Wholesale Prices plugin. In this article we’ll outline the details of the ...

Read more »

Lucas Karpiuk

Today we received a report from a customer that her WooCommerce checkout was malfunctioning, preventing her own customers from completing the checkout process. After some investigation we were able to determine that the issue is specific to the latest version of WooCommerce (2.3.6) and only affects visitors using Internet Explorer (versions 10 and 11 in our ...

Read more »

Lucas Karpiuk

Last week a user on the WordPress subreddit was asking about displaying a random post using a unique permanent link – something like domain.com/random-post/, for example. This is something that can be done via the pre_get_posts filter with just a few lines of code.

Read more »

Lucas Karpiuk

Today on the WordPress subreddit, someone asked if it was possible to have posts from a custom post type (recipes, in their example) show up in the main blog at a set frequency (ie. every 5th post). My initial thought was, probably not. But I decided to do a little digging anyway. Turns out there’s a ...

Read more »

Lucas Karpiuk

Last week a user on WordPress StackExchange inquired about excluding categories from a nav menu on they fly if the category contained no posts. I was able to provide a very simple solution using the wp_get_nav_menu_items action filter and the global $wpdb object [codex]. Today we will expand on this solution slightly to remove empty terms ...

Read more »

Lucas Karpiuk

The Dynamic Pricing extension for WooCommerce is a great plugin that allows you to change prices on the fly under a number of different circumstances. One way in which we see this plugin being used quite often is per-product pricing for registered customers with a specific role – wholesalers, for example. However, when this approach is used ...

Read more »

Lucas Karpiuk

A few weeks ago I ran into someone on the WordPress StackExchange wanting to sort his list of authors by recent activity – the author with the most recently published article first, etc. This type of sorting isn’t currently possible using the get_users() function(codex), nor the WP_User_Query class (codex), but it can be done – ...

Read more »

Lucas Karpiuk

A question we get asked quite often is how to create a link to an email address. There’s a small trick to it, but once you know it, it’s quite easy to do. As a bonus, we’ll also talk about how to create a link to a phone number.

Read more »

Lucas Karpiuk