Version Description
September 18th, 2020 = * Swapping (deprecated) wp_make_content_images_responsive for wp_filter_content_tags in our content filter. Thanks @stephencd!
Download this release
Release Info
Developer | fmixell |
Plugin | ![]() |
Version | 1.7.5 |
Comparing to | |
See all releases |
Code changes from version 1.7.4 to 1.7.5
admin/class.settings.php
CHANGED
@@ -43,7 +43,7 @@ class YIKES_Custom_Product_Tabs_Settings {
|
|
43 |
$content = function_exists( 'wpautop' ) ? wpautop( $content ) : $content;
|
44 |
$content = function_exists( 'shortcode_unautop' ) ? shortcode_unautop( $content ) : $content;
|
45 |
$content = function_exists( 'prepend_attachment' ) ? prepend_attachment( $content ) : $content;
|
46 |
-
$content = function_exists( '
|
47 |
$content = function_exists( 'do_shortcode' ) ? do_shortcode( $content ) : $content;
|
48 |
|
49 |
if ( class_exists( 'WP_Embed' ) ) {
|
43 |
$content = function_exists( 'wpautop' ) ? wpautop( $content ) : $content;
|
44 |
$content = function_exists( 'shortcode_unautop' ) ? shortcode_unautop( $content ) : $content;
|
45 |
$content = function_exists( 'prepend_attachment' ) ? prepend_attachment( $content ) : $content;
|
46 |
+
$content = function_exists( 'wp_filter_content_tags' ) ? wp_filter_content_tags( $content ) : $content;
|
47 |
$content = function_exists( 'do_shortcode' ) ? do_shortcode( $content ) : $content;
|
48 |
|
49 |
if ( class_exists( 'WP_Embed' ) ) {
|
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.5
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -75,6 +75,9 @@ Yes! Since v1.4 we've added the necessary code to ensure the custom tab data is
|
|
75 |
|
76 |
== Changelog ==
|
77 |
|
|
|
|
|
|
|
78 |
= 1.7.4 – September 12th, 2020 =
|
79 |
* WooCommerce 4.5.
|
80 |
|
4 |
Tags: woocommerce, product tabs, repeatable, duplicate, customize, custom, tabs, product, woo, commerce
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 5.5
|
7 |
+
Stable tag: 1.7.5
|
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.5 – September 18th, 2020 =
|
79 |
+
* Swapping (deprecated) wp_make_content_images_responsive for wp_filter_content_tags in our content filter. Thanks @stephencd!
|
80 |
+
|
81 |
= 1.7.4 – September 12th, 2020 =
|
82 |
* WooCommerce 4.5.
|
83 |
|
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.5
|
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.5' );
|
109 |
}
|
110 |
|
111 |
/**
|