Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.7.5 #137

Merged
merged 2 commits into from
Sep 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion admin/class.settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function yikes_the_content_filter( $content ) {
$content = function_exists( 'wpautop' ) ? wpautop( $content ) : $content;
$content = function_exists( 'shortcode_unautop' ) ? shortcode_unautop( $content ) : $content;
$content = function_exists( 'prepend_attachment' ) ? prepend_attachment( $content ) : $content;
$content = function_exists( 'wp_make_content_images_responsive' ) ? wp_make_content_images_responsive( $content ) : $content;
$content = function_exists( 'wp_filter_content_tags' ) ? wp_filter_content_tags( $content ) : $content;
$content = function_exists( 'do_shortcode' ) ? do_shortcode( $content ) : $content;

if ( class_exists( 'WP_Embed' ) ) {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "custom-product-tabs",
"version": "1.7.4",
"version": "1.7.5",
"devDependencies": {
"grunt-cli": ">=1.3.1",
"grunt-contrib-cssmin": ">=3.0.0",
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: http://yikesinc.com
Tags: woocommerce, product tabs, repeatable, duplicate, customize, custom, tabs, product, woo, commerce
Requires at least: 3.8
Tested up to: 5.5
Stable tag: 1.7.4
Stable tag: 1.7.5
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -75,6 +75,9 @@ Yes! Since v1.4 we've added the necessary code to ensure the custom tab data is

== Changelog ==

= 1.7.4 – September 18th, 2020 =
* Swapping (deprecated) wp_make_content_images_responsive for wp_filter_content_tags in our content filter.

= 1.7.4 – September 12th, 2020 =
* WooCommerce 4.5.

Expand Down
4 changes: 2 additions & 2 deletions yikes-inc-easy-custom-woocommerce-product-tabs.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Extend WooCommerce to add and manage custom product tabs. Create as many product tabs as needed per product.
* Author: YIKES, Inc.
* Author URI: http://www.yikesinc.com
* Version: 1.7.4
* Version: 1.7.5
* Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
* Domain Path: languages/
*
Expand Down Expand Up @@ -105,7 +105,7 @@ private function define_constants() {
* Define the plugin's version.
*/
if ( ! defined( 'YIKES_Custom_Product_Tabs_Version' ) ) {
define( 'YIKES_Custom_Product_Tabs_Version', '1.7.4' );
define( 'YIKES_Custom_Product_Tabs_Version', '1.7.5' );
}

/**
Expand Down