Version Description
March 13th, 2020 = * Fixes a bug with product display in certain conditions.
Download this release
Release Info
Developer | fmixell |
Plugin | Custom Product Tabs for WooCommerce |
Version | 1.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.0 to 1.7.1
public/class.yikes-woo-tabs-display.php
CHANGED
@@ -42,7 +42,7 @@ if ( ! class_exists( 'YIKES_Custom_Product_Tabs_Display' ) ) {
|
|
42 |
|
43 |
$product_tabs = maybe_unserialize( get_post_meta( $product_id, 'yikes_woo_products_tabs' , true ) );
|
44 |
|
45 |
-
if ( ! empty( $product_tabs ) ) {
|
46 |
|
47 |
// Setup priorty to loop over, and render tabs in proper order
|
48 |
$i = 25;
|
42 |
|
43 |
$product_tabs = maybe_unserialize( get_post_meta( $product_id, 'yikes_woo_products_tabs' , true ) );
|
44 |
|
45 |
+
if ( is_array( $product_tabs ) && ! empty( $product_tabs ) ) {
|
46 |
|
47 |
// Setup priorty to loop over, and render tabs in proper order
|
48 |
$i = 25;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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: 5.4
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -75,7 +75,10 @@ Yes! Since v1.4 we've added the necessary code to ensure the custom tab data is
|
|
75 |
|
76 |
== Changelog ==
|
77 |
|
78 |
-
= 1.7.
|
|
|
|
|
|
|
79 |
* Toggle the content filter on or off setting added. Use this to help with compatibility.
|
80 |
* Support WooCommerce 4.0.
|
81 |
* Support WordPress 5.4.
|
4 |
Tags: woocommerce, product tabs, repeatable, duplicate, customize, custom, tabs, product, woo, commerce
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 5.4
|
7 |
+
Stable tag: 1.7.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
75 |
|
76 |
== Changelog ==
|
77 |
|
78 |
+
= 1.7.1 – March 13th, 2020 =
|
79 |
+
* Fixes a bug with product display in certain conditions.
|
80 |
+
|
81 |
+
= 1.7.0 – March 10th, 2020 =
|
82 |
* Toggle the content filter on or off setting added. Use this to help with compatibility.
|
83 |
* Support WooCommerce 4.0.
|
84 |
* Support WordPress 5.4.
|
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.7.
|
9 |
* Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
|
10 |
* Domain Path: languages/
|
11 |
*
|
@@ -105,7 +105,7 @@ class YIKES_Custom_Product_Tabs {
|
|
105 |
* Define the plugin's version.
|
106 |
*/
|
107 |
if ( ! defined( 'YIKES_Custom_Product_Tabs_Version' ) ) {
|
108 |
-
define( 'YIKES_Custom_Product_Tabs_Version', '1.7.
|
109 |
}
|
110 |
|
111 |
/**
|
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.7.1
|
9 |
* Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
|
10 |
* Domain Path: languages/
|
11 |
*
|
105 |
* Define the plugin's version.
|
106 |
*/
|
107 |
if ( ! defined( 'YIKES_Custom_Product_Tabs_Version' ) ) {
|
108 |
+
define( 'YIKES_Custom_Product_Tabs_Version', '1.7.1' );
|
109 |
}
|
110 |
|
111 |
/**
|