Version Description
- March 1st, 2016 =
- Re-named the tab ID's to support URL's with query args (eg: http://www.example.com/shop#tab-reviews)
Download this release
Release Info
Developer | yikesitskevin |
Plugin | Custom Product Tabs for WooCommerce |
Version | 1.4.4 |
Comparing to | |
See all releases |
Code changes from version 1.4.3 to 1.4.4
readme.txt
CHANGED
@@ -3,10 +3,10 @@ Contributors: yikesinc, eherman24, liljimmi
|
|
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.
|
7 |
Requires WooCommerce at least: 2.0
|
8 |
Tested WooCommerce up to: 2.5.2
|
9 |
-
Stable tag: 1.4.
|
10 |
License: GPLv2 or later
|
11 |
|
12 |
This plugin extends WooCommerce to allow site admins to add custom tabs to products.
|
@@ -55,6 +55,9 @@ Yes! Since v1.4 we've added the necessary hooks and filters to ensure the custom
|
|
55 |
|
56 |
== Changelog ==
|
57 |
|
|
|
|
|
|
|
58 |
= 1.4.3 - February 18th, 2016 =
|
59 |
* Wrapped missing 'Custom Tab Title' in localization/translation functions. (Plugin is now 100% translatable)
|
60 |
* Removed i18n class files, and old .po/.mo files (less bloat)
|
@@ -84,6 +87,5 @@ Yes! Since v1.4 we've added the necessary hooks and filters to ensure the custom
|
|
84 |
* Initial Release
|
85 |
|
86 |
== Upgrade Notice ==
|
87 |
-
= 1.4.
|
88 |
-
*
|
89 |
-
* Removed i18n class files, and old .po/.mo files (less bloat)
|
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.7
|
7 |
Requires WooCommerce at least: 2.0
|
8 |
Tested WooCommerce up to: 2.5.2
|
9 |
+
Stable tag: 1.4.4
|
10 |
License: GPLv2 or later
|
11 |
|
12 |
This plugin extends WooCommerce to allow site admins to add custom tabs to products.
|
55 |
|
56 |
== Changelog ==
|
57 |
|
58 |
+
= 1.4.4 - March 1st, 2016 =
|
59 |
+
* Re-named the tab ID's to support URL's with query args (eg: http://www.example.com/shop#tab-reviews)
|
60 |
+
|
61 |
= 1.4.3 - February 18th, 2016 =
|
62 |
* Wrapped missing 'Custom Tab Title' in localization/translation functions. (Plugin is now 100% translatable)
|
63 |
* Removed i18n class files, and old .po/.mo files (less bloat)
|
87 |
* Initial Release
|
88 |
|
89 |
== Upgrade Notice ==
|
90 |
+
= 1.4.4 - March 1st, 2016 =
|
91 |
+
* Re-named the tab ID's to support URL's with query args (eg: http://www.example.com/shop#tab-reviews)
|
|
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.4.
|
9 |
* Tested up to: 4.3
|
10 |
* Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
|
11 |
*
|
@@ -370,7 +370,7 @@
|
|
370 |
// replace all underscores with single spaces
|
371 |
$tab_id = preg_replace( "/\s+/", '-', $tab_id );
|
372 |
// replace all multiple spaces with single dashes
|
373 |
-
$tab_id =
|
374 |
// prepend with 'tab-' string
|
375 |
}
|
376 |
}
|
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.4.4
|
9 |
* Tested up to: 4.3
|
10 |
* Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
|
11 |
*
|
370 |
// replace all underscores with single spaces
|
371 |
$tab_id = preg_replace( "/\s+/", '-', $tab_id );
|
372 |
// replace all multiple spaces with single dashes
|
373 |
+
$tab_id = $tab_id;
|
374 |
// prepend with 'tab-' string
|
375 |
}
|
376 |
}
|