Plugin Directory

Changeset 3333376


Ignore:
Timestamp:
07/24/2025 08:40:28 AM (8 months ago)
Author:
expivi
Message:

2.15.5

  • Added new Cart Redirect Hook (expivi_after_add_to_cart_redirect)
Location:
expivi/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • expivi/trunk/classes/class-expivi.php

    r3324082 r3333376  
    2929     * @var string
    3030     */
    31     public $version = '2.15.4';
     31    public $version = '2.15.5';
    3232
    3333    /**
  • expivi/trunk/classes/woocommerce/class-expivi-cart-manager.php

    r3116965 r3333376  
    543543
    544544        // Redirect to cart.
    545         wp_safe_redirect( wc_get_cart_url() );
     545        if ( has_action( 'expivi_after_add_to_cart_redirect' ) ) {
     546            do_action( 'expivi_after_add_to_cart_redirect', $saved_config );
     547        } else {
     548            wp_safe_redirect( wc_get_cart_url() );
     549        }
    546550        exit;
    547551    }
  • expivi/trunk/expivi.php

    r3324082 r3333376  
    44 * Description: Complex visualisation and configuration made simple
    55 * Plugin URI: https://wordpress.org/plugins/expivi/
    6  * Version: 2.15.4
     6 * Version: 2.15.5
    77 * Author: Expivi
    88 * Author URI: https://www.expivi.com/
  • expivi/trunk/readme.txt

    r3324082 r3333376  
    55Tested up to: 6.7
    66Requires PHP: 7.4
    7 Stable tag: 2.15.4
     7Stable tag: 2.15.5
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3636
    3737== Changelog ==
     38= 2.15.5 24/07/2025 =
     39* Added new Cart Redirect Hook (expivi_after_add_to_cart_redirect)
     40
    3841= 2.15.4 30/06/2025 =
    3942* Added new JS Hook xpv_init_custom_components_before_create
Note: See TracChangeset for help on using the changeset viewer.