Version Description
Download this release
Release Info
Developer | eherman24 |
Plugin | Custom Product Tabs for WooCommerce |
Version | 1.8.1 |
Comparing to | |
See all releases |
Code changes from version 1.8.0 to 1.8.1
- admin/class.premium.php +1 -1
- changelog.txt +3 -0
- readme.txt +3 -2
- yikes-inc-easy-custom-woocommerce-product-tabs.php +2 -2
admin/class.premium.php
CHANGED
@@ -102,7 +102,7 @@ class YIKES_Custom_Product_Tabs_Premium {
|
|
102 |
printf(
|
103 |
wp_kses_post(
|
104 |
/* translators: %1$s is html markup for a heart icon. %2$s is an anchor tag (link) to https://yikesinc.com. */
|
105 |
-
__( 'This plugin made with %1$s by %2$s', 'yikes-inc-easy-custom-woocommerce-product-tabs' )
|
106 |
),
|
107 |
'<span class="dashicons dashicons-heart yikes-love"></span>',
|
108 |
'<a href="https://www.yikesinc.com" target="_blank" title="YIKES Inc.">YIKES Inc.</a>'
|
102 |
printf(
|
103 |
wp_kses_post(
|
104 |
/* translators: %1$s is html markup for a heart icon. %2$s is an anchor tag (link) to https://yikesinc.com. */
|
105 |
+
__( 'This plugin made with %1$s by %2$s', 'yikes-inc-easy-custom-woocommerce-product-tabs' )
|
106 |
),
|
107 |
'<span class="dashicons dashicons-heart yikes-love"></span>',
|
108 |
'<a href="https://www.yikesinc.com" target="_blank" title="YIKES Inc.">YIKES Inc.</a>'
|
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
= 1.8.0 - October 17th, 2022 =
|
2 |
* Bump WC tested up to to 6.0.
|
3 |
* Update Custom Tabs page styles.
|
1 |
+
= 1.8.1 - October 17th, 2022 =
|
2 |
+
* Remove extra comma causing PHP 7.2 issues.
|
3 |
+
|
4 |
= 1.8.0 - October 17th, 2022 =
|
5 |
* Bump WC tested up to to 6.0.
|
6 |
* Update Custom Tabs page styles.
|
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: 6.0
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -88,4 +88,5 @@ Yes! Since v1.4 we've added the necessary code to ensure the custom tab data is
|
|
88 |
* Tweak the styles on the WooCommerce Custom Tabs section.
|
89 |
* Tweaked the markup so that when a new tab is added the button holder width is correct.
|
90 |
* Update button styles to match WooCommerce branding.
|
91 |
-
* Add custom admin footer text on our pages.
|
|
4 |
Tags: woocommerce, product tabs, repeatable, duplicate, customize, custom, tabs, product, woo, commerce
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 6.0
|
7 |
+
Stable tag: 1.8.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
88 |
* Tweak the styles on the WooCommerce Custom Tabs section.
|
89 |
* Tweaked the markup so that when a new tab is added the button holder width is correct.
|
90 |
* Update button styles to match WooCommerce branding.
|
91 |
+
* Add custom admin footer text on our pages.
|
92 |
+
* Remove extra comma causing PHP 7.2 issues.
|
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: https://www.yikesinc.com
|
8 |
-
* Version: 1.8.
|
9 |
* Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
|
10 |
* Domain Path: languages/
|
11 |
*
|
@@ -122,7 +122,7 @@ class YIKES_Custom_Product_Tabs {
|
|
122 |
* Define the plugin's version.
|
123 |
*/
|
124 |
if ( ! defined( 'YIKES_Custom_Product_Tabs_Version' ) ) {
|
125 |
-
define( 'YIKES_Custom_Product_Tabs_Version', '1.8.
|
126 |
}
|
127 |
|
128 |
/**
|
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: https://www.yikesinc.com
|
8 |
+
* Version: 1.8.1
|
9 |
* Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
|
10 |
* Domain Path: languages/
|
11 |
*
|
122 |
* Define the plugin's version.
|
123 |
*/
|
124 |
if ( ! defined( 'YIKES_Custom_Product_Tabs_Version' ) ) {
|
125 |
+
define( 'YIKES_Custom_Product_Tabs_Version', '1.8.1' );
|
126 |
}
|
127 |
|
128 |
/**
|