Plugin Directory

Changeset 3158889


Ignore:
Timestamp:
09/27/2024 04:45:38 PM (18 months ago)
Author:
HappyKite
Message:

Version 1.6.1 released

Location:
continue-shopping-for-woocommerce
Files:
9 added
2 edited

Legend:

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

    r2985014 r3158889  
    33Tags: WooCommerce, Continue Shopping, WooCommerce continue shopping, eCommerce
    44Requires at least: 4.2
    5 Tested up to: 6.3.2
    6 Stable tag: 1.6
     5Tested up to: 6.6.2
     6Stable tag: 1.6.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3333
    3434== Changelog ==
     35= 1.6.1 - 27th September 2024 =
     36* UPDATE - Works with WooCommerce 9.3+
     37* UPDATE - Works with WordPress 6.6+
     38
    3539= 1.6 - 27th October 2023 =
    3640* NEW - Tested and declared compatibility with WC HPOS
  • continue-shopping-for-woocommerce/trunk/woocommerce-continue-shopping.php

    r2985014 r3158889  
    11<?php
    22/**
    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
    9 * Text Domain: continue-shopping-for-woocommerce
    10 * Domain Path: /languages
    11 * WC requires at least: 2.4
    12 * 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 **/
    1414
    1515/*
     
    3131 ***************************/
    3232
    33 //Retrieve settings from Admin Options table
     33// Retrieve settings from Admin Options table
    3434$hpy_cs_options = get_option( 'hpy_cs_settings' );
    3535
     
    3737/****************************
    3838 * Declare HPOS Compatibility
    39  ****************************/
     39 */
    4040
    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 );
     41add_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        }
    4447    }
    45 } );
     48);
    4649
    4750/***************************
    4851 * includes
    49  ***************************/
     52 */
    5053
    5154add_action( 'plugins_loaded', 'hpy_cs_initiate_plugin' );
Note: See TracChangeset for help on using the changeset viewer.