Liquid error (layout/theme line 16): Could not find asset snippets/open-graph.liquid SkyVerge Test – tagged "WooCommerce Tutorials" – Page 2 – skyverge-dev-scott

SkyVerge Test

How to Set WooCommerce Virtual Order Status to Complete After Payment July 24 2012

WooCommerce virtual orders can be automatically marked as ‘completed’ after payment with a little bit of code added to a custom plugin, or your themes functions.php file. By default WooCommerce will mark virtual-downloadable orders as ‘completed’ after successful payment, which makes sense, but some store owners will want to be able to automatically mark even a virtual order as complete upon payment, for instance in the case of a site Keep Reading…

The post How to Set WooCommerce Virtual Order Status to Complete After Payment appeared first on SkyVerge.


Create an Overrideable WooCommerce Template File July 06 2012

Sometimes when developing a WooCommerce plugin you want to output a snippet of HTML, and do so in such a way that the content can be easily overridden by a theme. It’s part of the process of crafting a well-engineered, customizable plugin. The best way to achieve this is by using WooCommerce’s own templating mechanism, and what once took some effort and some filters is now a snap thanks to Keep Reading…

The post Create an Overrideable WooCommerce Template File appeared first on SkyVerge.


How to Get Various WooCommerce Page URLs July 04 2012

Code examples of how to get various WooCommerce page URLs such My Account and Checkout

The post How to Get Various WooCommerce Page URLs appeared first on SkyVerge.


Hide WooCommerce Product Images June 29 2012

You can hide WooCommerce product images from the product detail pages by using the following technique.

The post Hide WooCommerce Product Images appeared first on SkyVerge.


Add Payment Type to WooCommerce Admin Email June 08 2012

Here’s a little snippet to add the order payment type to the WooCommerce Admin New Order email, in an upgrade-safe manner

The post Add Payment Type to WooCommerce Admin Email appeared first on SkyVerge.


How to Determine the WooCommerce Current Page June 04 2012

WooCommerce makes it a snap to programmatically determine the current page through the use of their Conditional Tags. These functions can be used to check whether the current page is the shop page: is_shop(), or a product page: is_product(). See WooCommerce Conditional for the full list. These functions are based on the standard WordPress Conditional Tags, and thus behave in the same manner. Meaning that if you try to determine Keep Reading…

The post How to Determine the WooCommerce Current Page appeared first on SkyVerge.


Add ‘Sold Out’ to WooCommerce Variable Product Dropdown June 04 2012

Note: Due to a change in WooCommerce 2.0 the following code no longer works, and I’m not seeing any way of making it compatible again – Justin This is a quick little ‘how to’ that came up in a recent client WooCommerce request. The client wanted to add the text ‘sold out’ to the variable product configuration dropdowns on the product page to make it more clear to customers when Keep Reading…

The post Add ‘Sold Out’ to WooCommerce Variable Product Dropdown appeared first on SkyVerge.


How to Find Product by SKU in WooCommerce May 21 2012

Here's a little snippet of code which you can use in your WooCommerce plugin development to get a particular product by its SKU.

The post How to Find Product by SKU in WooCommerce appeared first on SkyVerge.


Creating a Custom Plugin For Your WooCommerce Shop April 19 2012

I plan to put together a mini series covering the basics of properly planning, engineering, launching and maintaining a WooCommerce shop. In the future as I write additional articles I will link them together, for now this first article will cover the basics of creating a custom plugin for your WooCommerce site, and provide you with a plugin skeleton to download and use as a starting point. This article assumes Keep Reading…

The post Creating a Custom Plugin For Your WooCommerce Shop appeared first on SkyVerge.


Theming WooCommerce: How to Override WooCommerce Template Files March 24 2012

To override WooCommerce template files in your theme (or better yet, child theme) simply make a folder named ‘woocommerce’ within your theme directory, and then create the folders/template file you wish to override within it. Example As an example, lets override the price template for the single product page to add a notice. First we locate the template file in question at: woocommerce/templates/single-product/price.php (see the full list of templates). Next, Keep Reading…

The post Theming WooCommerce: How to Override WooCommerce Template Files appeared first on SkyVerge.


How to Add Custom Product Tabs to WooCommerce March 07 2012

The free Custom Product Tabs plugin for WooCommerce lets you add a custom tab to the product view page. The new tab is easily configured from the Product admin page where you can set the tab name, and content containing plaintext, HTML or shortcodes. This plugin has been tested with the Wootique theme, but should be compatible with any WooCommerce theme. Create the Custom Tab View the Custom Tab Installation Keep Reading…

The post How to Add Custom Product Tabs to WooCommerce appeared first on SkyVerge.


WooCommerce 1.4 SSL Admin Mixed Content Bug February 02 2012

2/10/2012 Update – The good people of WooCommerce have fixed this issue as of the 1.4.2 release, so the modification described in this article is no longer needed. I have left the rest of the article untouched for historical curiosity. As I described in my most recent news posting, WooCommerce 1.4 while a great update to the excellent E-Commerce offering from WooThemes, did include at least one very minor bug. Keep Reading…

The post WooCommerce 1.4 SSL Admin Mixed Content Bug appeared first on SkyVerge.