Custom Product Tabs for WooCommerce - Version 1.5.17

Version Description

  • Auguest 23rd, 2017
Download this release

Release Info

Developer yikesitskevin
Plugin Icon 128x128 Custom Product Tabs for WooCommerce
Version 1.5.17
Comparing to
See all releases

Code changes from version 1.5.16 to 1.5.17

readme.txt CHANGED
@@ -3,10 +3,10 @@ Contributors: yikesinc, eherman24, liljimmi, yikesitskevin
3
  Donate link: http://yikesinc.com
4
  Tags: woocommerce, product tabs, repeatable, duplicate, customize, custom, tabs, product, woo, commerce
5
  Requires at least: 3.8
6
- Tested up to: 4.8
7
  Requires WooCommerce at least: 3.0.0
8
- Tested WooCommerce up to: 3.1.0
9
- Stable tag: 1.5.16
10
  License: GPLv2 or later
11
 
12
  Add custom tabs with content to products in WooCommerce.
@@ -76,6 +76,10 @@ Yes! Since v1.4 we've added the necessary code to ensure the custom tab data is
76
 
77
  == Changelog ==
78
 
 
 
 
 
79
  = 1.5.16 - Auguest 1st, 2017 =
80
  * Adding a proper deactivation hook. The plugin will leave no trace.
81
 
3
  Donate link: http://yikesinc.com
4
  Tags: woocommerce, product tabs, repeatable, duplicate, customize, custom, tabs, product, woo, commerce
5
  Requires at least: 3.8
6
+ Tested up to: 4.8.1
7
  Requires WooCommerce at least: 3.0.0
8
+ Tested WooCommerce up to: 3.1.2
9
+ Stable tag: 1.5.17
10
  License: GPLv2 or later
11
 
12
  Add custom tabs with content to products in WooCommerce.
76
 
77
  == Changelog ==
78
 
79
+ = 1.5.17 - Auguest 23rd, 2017 =
80
+ * Cleaning up some PHP Notices being thrown - thanks to @ZombiEquinox on GitHub for reporting this
81
+ * Updating readme compatibility values
82
+
83
  = 1.5.16 - Auguest 1st, 2017 =
84
  * Adding a proper deactivation hook. The plugin will leave no trace.
85
 
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.16
9
  * Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
10
  * Domain Path: languages/
11
  *
@@ -468,8 +468,8 @@
468
 
469
  // Deal with saving the tab content
470
 
471
- $tab_title = stripslashes( $_POST['_yikes_wc_custom_repeatable_product_tabs_tab_title_' . $i] );
472
- $tab_content = stripslashes( $_POST['_yikes_wc_custom_repeatable_product_tabs_tab_content_' . $i] );
473
 
474
  if ( empty( $tab_title ) && empty( $tab_content ) ) {
475
 
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.17
9
  * Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
10
  * Domain Path: languages/
11
  *
468
 
469
  // Deal with saving the tab content
470
 
471
+ $tab_title = isset( $_POST['_yikes_wc_custom_repeatable_product_tabs_tab_title_' . $i] ) ? stripslashes( $_POST['_yikes_wc_custom_repeatable_product_tabs_tab_title_' . $i] ) : '';
472
+ $tab_content = isset( $_POST['_yikes_wc_custom_repeatable_product_tabs_tab_content_' . $i] ) ? stripslashes( $_POST['_yikes_wc_custom_repeatable_product_tabs_tab_content_' . $i] ) : '';
473
 
474
  if ( empty( $tab_title ) && empty( $tab_content ) ) {
475