You have been asking for this so I wrote it for you. This plugin is a very simply way of adding a WYSIWYG controlled tab to your WooCommerce products. It does the legwork for you and all you need to do it edit 1 line in the plugin file to set the tab name and to determine how many tabs you want. I have even provided examples for you in the code.
I might eventually add a little admin system to this but for now you get the following:
$sb_awt_tabs = array(
'New Tab 1'=>50
, 'New Tab 2'=>60
// , 'New Tab 3'=>50
// , 'New Tab 4'=>50
);
You wil note two tabs are uncommented and two are commented. Simply change the part at the start for the name and the second part is the priority. Very simply put the higher the number the further right in your tab list it will be. If you need more than 4 tabs then simply duplicate a line as normal.
Once you activate the plugin you will notice a new Tiny MCE editor at the bottom of each edit products page. Simply fill it in if you want the tab to show or leave it blank to hide the tab. Nice and easy!
I should add that if you include any shortcodes in the tab editor then they will be read also.. ie a YouTube video or something.
Download
SB Add WooCommerce Tabs (1.26 kB)Note
This plugin only works with WooCommerce Version 2 or newer. I have already written another post last year to show you how to add new tabs to older versions.

On the 6th of March (I think) the lovely guys at WooThemes graced us with a lovely new version of their fantastic WooCommerce plugin. They changed a lot of things, most of which I have yet to absorb. A couple of notable things though caught my eye. You may or may not be aware that I have written a few tutorials concerning the WooCommerce tab system. Adding new ones and, of course, removing the reviews tab. Since 2.0 the product tab API has been updated and is now somewhat slightly more elegant.
My
I have recently integrated the Interswitch WebPay payment gateway into the popular WooCommerce plugin for WordPress. It sends the user off to Interswitch to enter their payment information as normal. Then they return to the site with their information in POST it sends a CURL request to the Interswitch server which returns the payment status. If the status is positive then the order is set to Processed and the purchase process completed pending dispatch of the item(s). Id the CURL request returns an error then the message is presented to the user in conjunction with a ‘try again’ link which sends them off to Interswitch to enter their information again as per the requirements set out by Interswitch.
UPDATE: If you are using WooCommerce 2.0+ then you need to read
You know it’s the little things in life that highlight our great successes. I have been looking for this for literally hours.. What I wanted to do was edit the number of product columns that are shown in the default grid view homepage. It’s set to 4 and I wanted 3. Not hard right? Sadly it was but the solution was a two liner! Let me explain…


