Changeset 2985014
- Timestamp:
- 10/27/2023 02:39:16 PM (2 years ago)
- Location:
- continue-shopping-for-woocommerce
- Files:
-
- 6 added
- 2 edited
-
tags/1.6 (added)
-
tags/1.6/classes (added)
-
tags/1.6/classes/class-admin-options.php (added)
-
tags/1.6/classes/class-continue-shopping.php (added)
-
tags/1.6/readme.txt (added)
-
tags/1.6/woocommerce-continue-shopping.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-continue-shopping.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
continue-shopping-for-woocommerce/trunk/readme.txt
r2886457 r2985014 3 3 Tags: WooCommerce, Continue Shopping, WooCommerce continue shopping, eCommerce 4 4 Requires at least: 4.2 5 Tested up to: 6. 1.16 Stable tag: 1. 55 Tested up to: 6.3.2 6 Stable tag: 1.6 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 33 33 34 34 == Changelog == 35 = 1.6 - 27th October 2023 = 36 * NEW - Tested and declared compatibility with WC HPOS 37 * UPDATE - Works with WooCommerce 8.2.1 38 * UPDATE - Works with WordPress 6.3.2 39 35 40 = 1.5 - 24th March 2023 = 36 41 * FIX - Fixed issue with settings page not linking back to the add to cart redirect setting -
continue-shopping-for-woocommerce/trunk/woocommerce-continue-shopping.php
r2886457 r2985014 6 6 * Author: HappyKite 7 7 * Author URI: http://www.happykite.co.uk/ 8 * Version: 1. 58 * Version: 1.6 9 9 * Text Domain: continue-shopping-for-woocommerce 10 10 * Domain Path: /languages 11 11 * WC requires at least: 2.4 12 * WC tested up to: 7.5.112 * WC tested up to: 8.2.1 13 13 **/ 14 14 … … 34 34 $hpy_cs_options = get_option( 'hpy_cs_settings' ); 35 35 36 37 /**************************** 38 * Declare HPOS Compatibility 39 ****************************/ 40 41 add_action( 'before_woocommerce_init', function() { 42 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 43 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 44 } 45 } ); 36 46 37 47 /***************************
Note: See TracChangeset
for help on using the changeset viewer.