Changeset 3158889
- Timestamp:
- 09/27/2024 04:45:38 PM (18 months ago)
- Location:
- continue-shopping-for-woocommerce
- Files:
-
- 9 added
- 2 edited
-
tags/1.5/languages (added)
-
tags/1.6.1 (added)
-
tags/1.6.1/classes (added)
-
tags/1.6.1/classes/class-admin-options.php (added)
-
tags/1.6.1/classes/class-continue-shopping.php (added)
-
tags/1.6.1/languages (added)
-
tags/1.6.1/readme.txt (added)
-
tags/1.6.1/woocommerce-continue-shopping.php (added)
-
tags/1.6/languages (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-continue-shopping.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
continue-shopping-for-woocommerce/trunk/readme.txt
r2985014 r3158889 3 3 Tags: WooCommerce, Continue Shopping, WooCommerce continue shopping, eCommerce 4 4 Requires at least: 4.2 5 Tested up to: 6. 3.26 Stable tag: 1.6 5 Tested up to: 6.6.2 6 Stable tag: 1.6.1 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.1 - 27th September 2024 = 36 * UPDATE - Works with WooCommerce 9.3+ 37 * UPDATE - Works with WordPress 6.6+ 38 35 39 = 1.6 - 27th October 2023 = 36 40 * NEW - Tested and declared compatibility with WC HPOS -
continue-shopping-for-woocommerce/trunk/woocommerce-continue-shopping.php
r2985014 r3158889 1 1 <?php 2 2 /** 3 * Plugin Name: WooCommerce Continue Shopping4 * Plugin URI: http://www.happykite.co.uk5 * Description: Provides the ability to choose where the 'Continue Shopping' button on the WooCommerce Checkout takes you.6 * Author: HappyKite7 * Author URI: http://www.happykite.co.uk/8 * Version: 1.6 9 * Text Domain: continue-shopping-for-woocommerce10 * Domain Path: /languages11 * WC requires at least: 2.412 * WC tested up to: 8.2.1 13 **/3 * Plugin Name: WooCommerce Continue Shopping 4 * Plugin URI: http://www.happykite.co.uk 5 * Description: Provides the ability to choose where the 'Continue Shopping' button on the WooCommerce Checkout takes you. 6 * Author: HappyKite 7 * Author URI: http://www.happykite.co.uk/ 8 * Version: 1.6.1 9 * Text Domain: continue-shopping-for-woocommerce 10 * Domain Path: /languages 11 * WC requires at least: 2.4 12 * WC tested up to: 9.3.3 13 **/ 14 14 15 15 /* … … 31 31 ***************************/ 32 32 33 // Retrieve settings from Admin Options table33 // Retrieve settings from Admin Options table 34 34 $hpy_cs_options = get_option( 'hpy_cs_settings' ); 35 35 … … 37 37 /**************************** 38 38 * Declare HPOS Compatibility 39 * ***************************/39 */ 40 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 ); 41 add_action( 42 'before_woocommerce_init', 43 function () { 44 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 45 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 46 } 44 47 } 45 });48 ); 46 49 47 50 /*************************** 48 51 * includes 49 * **************************/52 */ 50 53 51 54 add_action( 'plugins_loaded', 'hpy_cs_initiate_plugin' );
Note: See TracChangeset
for help on using the changeset viewer.