Version Description
- April 17th, 2017 =
- Updating a WooCommerce action - now using the proper one instead of a deprecated one
Download this release
Release Info
| Developer | yikesitskevin |
| Plugin | |
| Version | 1.5.13 |
| Comparing to | |
| See all releases | |
Code changes from version 1.5.12 to 1.5.13
readme.txt
CHANGED
|
@@ -6,7 +6,7 @@ Requires at least: 3.8
|
|
| 6 |
Tested up to: 4.7.3
|
| 7 |
Requires WooCommerce at least: 3.0.0
|
| 8 |
Tested WooCommerce up to: 3.0.0
|
| 9 |
-
Stable tag: 1.5.
|
| 10 |
License: GPLv2 or later
|
| 11 |
|
| 12 |
Add custom tabs with content to products in WooCommerce.
|
|
@@ -74,6 +74,9 @@ Yes! Since v1.4 we've added the necessary code to ensure the custom tab data is
|
|
| 74 |
|
| 75 |
== Changelog ==
|
| 76 |
|
|
|
|
|
|
|
|
|
|
| 77 |
= 1.5.12 - April 10th, 2017 =
|
| 78 |
* Adding some CSS to allow the editor's text mode to function properly
|
| 79 |
|
| 6 |
Tested up to: 4.7.3
|
| 7 |
Requires WooCommerce at least: 3.0.0
|
| 8 |
Tested WooCommerce up to: 3.0.0
|
| 9 |
+
Stable tag: 1.5.13
|
| 10 |
License: GPLv2 or later
|
| 11 |
|
| 12 |
Add custom tabs with content to products in WooCommerce.
|
| 74 |
|
| 75 |
== Changelog ==
|
| 76 |
|
| 77 |
+
= 1.5.13 - April 17th, 2017 =
|
| 78 |
+
* Updating a WooCommerce action - now using the proper one instead of a deprecated one
|
| 79 |
+
|
| 80 |
= 1.5.12 - April 10th, 2017 =
|
| 81 |
* Adding some CSS to allow the editor's text mode to function properly
|
| 82 |
|
yikes-inc-easy-custom-woocommerce-product-tabs.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* Description: Extend WooCommerce to add and manage custom product tabs. Create as many product tabs as needed per product.
|
| 6 |
* Author: YIKES, Inc
|
| 7 |
* Author URI: http://www.yikesinc.com
|
| 8 |
-
* Version: 1.5.
|
| 9 |
* Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
|
| 10 |
* Domain Path: languages/
|
| 11 |
*
|
|
@@ -62,7 +62,7 @@
|
|
| 62 |
private $tab_data = false;
|
| 63 |
|
| 64 |
/** plugin version number */
|
| 65 |
-
const VERSION = '1.5.
|
| 66 |
|
| 67 |
/** plugin text domain */
|
| 68 |
const TEXT_DOMAIN = 'yikes-inc-easy-custom-woocommerce-product-tabs';
|
|
@@ -147,7 +147,8 @@
|
|
| 147 |
public function init() {
|
| 148 |
// Backend stuff (show our custom product tabs on edit screen, handle saving data)
|
| 149 |
add_action( 'woocommerce_product_write_panel_tabs', array( $this, 'render_custom_product_tabs' ) );
|
| 150 |
-
add_action( '
|
|
|
|
| 151 |
add_action( 'woocommerce_process_product_meta', array( $this, 'product_save_data' ), 10, 2 );
|
| 152 |
|
| 153 |
// Add our custom product tabs section to the product page
|
| 5 |
* Description: Extend WooCommerce to add and manage custom product tabs. Create as many product tabs as needed per product.
|
| 6 |
* Author: YIKES, Inc
|
| 7 |
* Author URI: http://www.yikesinc.com
|
| 8 |
+
* Version: 1.5.13
|
| 9 |
* Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
|
| 10 |
* Domain Path: languages/
|
| 11 |
*
|
| 62 |
private $tab_data = false;
|
| 63 |
|
| 64 |
/** plugin version number */
|
| 65 |
+
const VERSION = '1.5.13';
|
| 66 |
|
| 67 |
/** plugin text domain */
|
| 68 |
const TEXT_DOMAIN = 'yikes-inc-easy-custom-woocommerce-product-tabs';
|
| 147 |
public function init() {
|
| 148 |
// Backend stuff (show our custom product tabs on edit screen, handle saving data)
|
| 149 |
add_action( 'woocommerce_product_write_panel_tabs', array( $this, 'render_custom_product_tabs' ) );
|
| 150 |
+
add_action( 'woocommerce_product_data_panels', array( $this, 'product_page_yikes_custom_tabs_panel' ) );
|
| 151 |
+
|
| 152 |
add_action( 'woocommerce_process_product_meta', array( $this, 'product_save_data' ), 10, 2 );
|
| 153 |
|
| 154 |
// Add our custom product tabs section to the product page
|
