Plugin Directory

Changeset 2825692


Ignore:
Timestamp:
11/29/2022 08:16:05 AM (2 years ago)
Author:
sebastian.pisula
Message:
  • Added support for WooCommerce 7.2
  • Fixed GET parameters passing after the redirection
Location:
cart-link-for-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cart-link-for-woocommerce/trunk/index.php

    r2812166r2825692 
    44 * Description: Create, customize and save the direct links adding the predefined products setup to the cart. Share the cart links with your customers, make their carts be automatically filled with the right items and boost your sales in no time!
    55 * Plugin URI: https://wordpress.org/plugins/cart-link-for-woocommerce/
    6  * Version: 1.2.0
     6 * Version: 1.3.0
    77 * Author: Sebastian Pisula
    88 * Author URI: mailto:[email protected]
    โ€ฆโ€ฆ 
    1212 * Tested up to: 6.1
    1313 * WC requires at least: 6.8
    14  * WC tested up to: 7.1
    15  * Requires PHP: 7.1
     14 * WC tested up to: 7.2
     15 * Requires PHP: 7.2
    1616 */
    1717
  • cart-link-for-woocommerce/trunk/readme.txt

    r2812166r2825692 
    44Requires at least: 5.7
    55Tested up to: 6.1
    6 Requires PHP: 7.1
    7 Stable tag: 1.2.0
     6Requires PHP: 7.2
     7Stable tag: 1.3.0
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
    โ€ฆโ€ฆ 
    6060== Changelog ==
    6161
     62= 1.3.0 - 2022-11-29 =
     63* Added support for WooCommerce 7.2
     64* Fixed GET parameters passing after the redirection
     65
    6266= 1.2.0 - 2022-11-04 =
    6367* Added support for WordPress 6.1
  • cart-link-for-woocommerce/trunk/src/Campaign/TriggerAction.php

    r2747470r2825692 
    5454        }
    5555
    56         wp_safe_redirect( $campaign->get_redirect_url() );
     56        wp_safe_redirect( add_query_arg( $_GET, $campaign->get_redirect_url() ) );
    5757        die();
    5858    }
Note: See TracChangeset for help on using the changeset viewer.