Changeset 3468673
- Timestamp:
- 02/24/2026 01:39:06 PM (5 weeks ago)
- Location:
- shieldclimb-reviews-tab-before-description/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
shieldclimb-reviews-tab-before-description.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shieldclimb-reviews-tab-before-description/trunk/readme.txt
r3437143 r3468673 5 5 Requires at least: 5.8 6 6 Tested up to: 6.9 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 Requires PHP: 7.2 9 9 WC requires at least: 5.8 10 WC tested up to: 10. 4.310 WC tested up to: 10.5.2 11 11 License: GPLv2 or later 12 12 License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 43 43 == ChangeLog == 44 44 45 = V1.0.4 = 46 47 * **Fixed**: Added full compatibility with WooCommerce High-Performance Order Storage (HPOS) and Cart & Checkout Blocks. This ensures smooth operation and removes any warnings on stores using the latest WooCommerce features 48 * **Updated**: Tested up to WooCommerce 10.5.2 49 45 50 = V1.0.3 = 46 51 -
shieldclimb-reviews-tab-before-description/trunk/shieldclimb-reviews-tab-before-description.php
r3437143 r3468673 5 5 * Plugin URI: https://shieldclimb.com/free-woocommerce-plugins/reviews-tab-before-description/ 6 6 * Description: Move Reviews Tab Before Description for WooCommerce to boost trust, increase conversions, and get a Shopify-like product page. 7 * Version: 1.0. 37 * Version: 1.0.4 8 8 * Requires Plugins: woocommerce 9 9 * Requires at least: 5.8 10 10 * Tested up to: 6.9 11 11 * WC requires at least: 5.8 12 * WC tested up to: 10. 4.312 * WC tested up to: 10.5.2 13 13 * Requires PHP: 7.2 14 14 * Author: shieldclimb.com … … 21 21 exit; // Exit if accessed directly. 22 22 } 23 24 /** 25 * Declare HPOS & Blocks compatibility 26 */ 27 add_action( 'before_woocommerce_init', function() { 28 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 29 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 30 'custom_order_tables', 31 __FILE__, 32 true 33 ); 34 35 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 36 'cart_checkout_blocks', 37 __FILE__, 38 true 39 ); 40 } 41 }); 23 42 24 43 add_filter( 'woocommerce_product_tabs', 'shieldclimb_reviews_tab_before_description', 1000 );
Note: See TracChangeset
for help on using the changeset viewer.