WooCommerce and First Data Give Back

We’re happy to announce a special for one of our WooCommerce products! WooCommerce and First Data have partnered to offer a rebate on the First Data payment gateway integration, along with some other great benefits! Sign up (US merchants only) by December 31, 2013 to take advantage of this awesome deal that gives you over $650 of benefits FREE! First Data is a large payment processor, and is the backend merchant provider for many companies….

Read More

WooCommerce extension updates & releases

New WooCommerce Product Documents Extension

We’re very excited to announce the release of another great WooCommerce extension! We’ve just released the WooCommerce Product Documents Extension, which allows you to create an accordion-style menu to display any supplementary documentation you want to post for customers for any product in your store. Want to post some sample chapters and images for an ebook? Use Product Documents! Need to post technical specifications or assembly instructions? It’s easy! The more information you can give…

Read More

Introducing the WooCommerce XML-RPC API

We know you’ve been waiting for a full-fledged WooCommerce API, and while that particular piece of greatness is still a few months away (see this Github issue for details), we’ve developed a simple XML-RPC API to help you start integrating WooCommerce with your backend systems today. This has been tested over the past few months with a handful of clients and we’re ready to release it to the world. Currently it only supports updating order…

Read More

WooCommerce extension updates & releases

New WooCommerce Plug-in: Authorize.net Reporting

Maybe this sounds a bit like you: You use an Authorize.net Payment Gateway, (maybe WooCommerce Authorize.net CIM or WooCommerce Authorize.net AIM) to process payments for your WooCommerce store, but it’s really difficult to get transaction information. If you want to get a simple list of transactions, you need to login to your account and run all sorts of complex reports. You spend hours pulling those reports and carefully massaging the data so it fits the…

Read More

WooCommerce extension updates & releases

WooCommerce First Data Upgrades!

First Data lovers, we may have just made your day. We’ve updated our First Data WooCommerce extension and added some new functionality that will probably knock your socks off. Just be prepared. ???? First, we’ve used an updated API so that you get more stable, reliable performance and a future-proofed extension. We’ve also made sure you can capture more sales and reduce cart abandonment by taking advantage of First Data TransArmor credit card tokenization, allowing…

Read More

WooCommerce extension updates & releases

New and Improved WooCommerce Braintree Payment Gateway!

We know you’ve all been waiting for this moment! Okay, maybe not, but we’re really excited to share some news with you. Were you unsure of which Braintree extension you needed to make your WooCommerce store complete? Problem solved! We’ve merged the Braintree and Braintree Transparent Redirect extensions to support shiny new braintree.js, which means you now get the simplicity of a direct gateway with the reduced PCI compliance of a redirect gateway, giving you…

Read More

Guide 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 ready for the big release. WooCommerce has never been one to hold back on making plugin-busting implementation changes with a new release, and they’re setting the bar quite high with 2.0. It’s chalk full of code changes and improvements plugin developers must be…

Read More

Tweaking the WooCommerce Order Admin: Searching For Custom Fields

The WooCommerce Order Admin allows you to search for orders by the following fields: order key billing first name billing last name billing company billing address 1 billing address 2 billing city billing postcode billing country billing state billing email billing phone order items But what if you want to search by another order field? Perhaps the order total? Well it’s as easy as adding something like the following to your themes functions.php: function woocommerce_shop_order_search_order_total(…

Read More

WooCommerce Order Admin Calc Line Totals

Compatibility Notice: The following article and code applies to pre-WooCommerce 2.1 only. It is not compatible with WooCommerce 2.1+ 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 through the Order Admin: As shown in the above image, there’s a button to calculate the line taxes for the order items, as…

Read More

Ask SkyVerge

Hide WooCommerce "Free" Price Label

A common WooCommerce question lately has been how to hide the “Free” price label in the product/category/shop pages. Thanks to WooCommerce’s judicious use of filters/actions, this is very easy request, yet if you’re new to WordPress/WooCommerce you might not necessarily know exactly where to look. Well look no further, because here’s an easy way to suppress that “Free” notice for regular/variable products: add_filter( ‘woocommerce_variable_free_price_html’, ‘hide_free_price_notice’ ); add_filter( ‘woocommerce_free_price_html’, ‘hide_free_price_notice’ ); add_filter( ‘woocommerce_variation_free_price_html’, ‘hide_free_price_notice’ ); /**…

Read More