Plugin Directory

Changeset 3352137


Ignore:
Timestamp:
08/28/2025 04:01:31 PM (6 months ago)
Author:
webbuilder143
Message:

1.5.2

  • [Fix] Resolved issue where WPBakery Page Builder block content was breaking inside tabs.
Location:
wb-custom-product-tabs-for-woocommerce
Files:
46 added
5 edited

Legend:

Unmodified
Added
Removed
  • wb-custom-product-tabs-for-woocommerce/trunk/admin/class-wb-custom-product-tabs-for-woocommerce-admin.php

    r3349310 r3352137  
    10971097            ?>
    10981098            <div class="notice notice-success wb-tabs-review-notice">
    1099                 <p><strong>🎉 Amazing! You've created more than 50 product tabs using Custom Product Tabs for WooCommerce.</strong></p>
     1099                <p><strong>🎉 Amazing! You've created more than 10 product tabs using Custom Product Tabs for WooCommerce.</strong></p>
    11001100                <p>
    11011101                    We're excited to see you're getting great value from the plugin. If it's improved your workflow, we'd really appreciate it if you could leave us a quick 5-star review. It only takes a moment, and your support helps us continue improving the plugin and offering excellent support.
     
    12441244        $total = $local_total + $global_total;
    12451245
    1246         return ( 50 <= $total );
     1246        return ( 10 < $total );
    12471247    }
    12481248
  • wb-custom-product-tabs-for-woocommerce/trunk/includes/class-wb-custom-product-tabs-for-woocommerce.php

    r3349310 r3352137  
    7070            $this->version = WB_CUSTOM_PRODUCT_TABS_FOR_WOOCOMMERCE_VERSION;
    7171        } else {
    72             $this->version = '1.5.1';
     72            $this->version = '1.5.2';
    7373        }
    7474        $this->plugin_name = 'wb-custom-product-tabs-for-woocommerce';
  • wb-custom-product-tabs-for-woocommerce/trunk/public/class-wb-custom-product-tabs-for-woocommerce-public.php

    r3349310 r3352137  
    178178                echo do_shortcode( wp_kses_post( wpautop( $content ) ) );
    179179            } elseif ( Wb_Custom_Product_Tabs_For_Woocommerce::use_custom_the_content() ) {
    180                 echo wp_kses_post( $this->safe_the_content_render( $content ) );
     180                echo $this->safe_the_content_render( $content ); // phpcs:ignore WordPress.Security.EscapeOutput
    181181            } else {
    182                 echo wp_kses_post( apply_filters( 'the_content', $content ) );
     182                echo apply_filters( 'the_content', $content ); // phpcs:ignore WordPress.Security.EscapeOutput
    183183            }
    184184            ?>
  • wb-custom-product-tabs-for-woocommerce/trunk/readme.txt

    r3349310 r3352137  
    66Tested up to: 6.8
    77Requires PHP: 5.6
    8 Stable tag: 1.5.1
     8Stable tag: 1.5.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    148148== Changelog ==
    149149
     150= 1.5.2 =
     151* [Fix] Resolved issue where WPBakery Page Builder block content was breaking inside tabs.
     152
    150153= 1.5.1 =
    151154* Tested with WC 10.1.1
     
    337340== Upgrade Notice ==
    338341
    339 = 1.5.1 =
    340 * Tested with WC 10.1.1
     342= 1.5.2 =
     343* [Fix] Resolved issue where WPBakery Page Builder block content was breaking inside tabs.
  • wb-custom-product-tabs-for-woocommerce/trunk/wb-custom-product-tabs-for-woocommerce.php

    r3349310 r3352137  
    1212 * Plugin URI:              https://wordpress.org/plugins/wb-custom-product-tab-for-wooCommerce/
    1313 * Description:             Create your own product tabs and assign it to your WooCommerce products
    14  * Version:                 1.5.1
     14 * Version:                 1.5.2
    1515 * WC requires at least:    5.0.0
    1616 * WC tested up to:         10.1
     
    3333 * Rename this for your plugin and update it as you release new versions.
    3434 */
    35 define( 'WB_CUSTOM_PRODUCT_TABS_FOR_WOOCOMMERCE_VERSION', '1.5.1' );
     35define( 'WB_CUSTOM_PRODUCT_TABS_FOR_WOOCOMMERCE_VERSION', '1.5.2' );
    3636define( 'WB_TAB_PLUGIN_FILENAME', __FILE__ );
    3737define( 'WB_TAB_ROOT_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.