Plugin Directory

Changeset 2985014


Ignore:
Timestamp:
10/27/2023 02:39:16 PM (2 years ago)
Author:
HappyKite
Message:

Version 1.6 Released

  • NEW - Tested and declared compatibility with WC HPOS
  • UPDATE - Works with WooCommerce 8.2.1
  • UPDATE - Works with WordPress 6.3.2
Location:
continue-shopping-for-woocommerce
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • continue-shopping-for-woocommerce/trunk/readme.txt

    r2886457 r2985014  
    33Tags: WooCommerce, Continue Shopping, WooCommerce continue shopping, eCommerce
    44Requires at least: 4.2
    5 Tested up to: 6.1.1
    6 Stable tag: 1.5
     5Tested up to: 6.3.2
     6Stable tag: 1.6
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3333
    3434== 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
    3540= 1.5 - 24th March 2023 =
    3641* 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  
    66* Author: HappyKite
    77* Author URI: http://www.happykite.co.uk/
    8 * Version: 1.5
     8* Version: 1.6
    99* Text Domain: continue-shopping-for-woocommerce
    1010* Domain Path: /languages
    1111* WC requires at least: 2.4
    12 * WC tested up to: 7.5.1
     12* WC tested up to: 8.2.1
    1313**/
    1414
     
    3434$hpy_cs_options = get_option( 'hpy_cs_settings' );
    3535
     36
     37/****************************
     38 * Declare HPOS Compatibility
     39 ****************************/
     40
     41add_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} );
    3646
    3747/***************************
Note: See TracChangeset for help on using the changeset viewer.