Plugin Directory

Changeset 3391719


Ignore:
Timestamp:
11/07/2025 11:48:21 AM (3 months ago)
Author:
flexcubed
Message:

v11.1.1

Location:
pitchprint
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • pitchprint/tags/11.1.1/CHANGELOG.txt

    r3391124 r3391719  
     1== 11.1.1 =
     2Minor fix to skip clearing customization if the call is an ajax with `ppc-simulate-cart`
     3
    14== 11.1.0 =
    25Fixed an issue where the editor class is duplicated when a variable product is set
  • pitchprint/tags/11.1.1/functions/front/carts.php

    r3391124 r3391719  
    1212            $cart_item_data[PITCHPRINT_CUSTOMIZATION_KEY] = $value;
    1313           
    14             // Only delete if we're actually adding to cart (not just checking)
    15             if (doing_action('woocommerce_add_to_cart')) {
     14            // Don't delete during cart simulation or validation checks
     15            $is_simulation = isset($_GET['wc-ajax']) && $_GET['wc-ajax'] === 'ppc-simulate-cart';
     16           
     17            if (!$is_simulation) {
    1618                General\delete_customization_data($product_id);
    1719            }
  • pitchprint/tags/11.1.1/pitchprint.php

    r3391124 r3391719  
    66*   Description:            A beautiful web based print customization app for your online store. Integrates with WooCommerce.
    77*   Author:                 PitchPrint, Inc.
    8 *   Version:                11.1.0
     8*   Version:                11.1.1
    99*   Author URI:             https://pitchprint.com
    1010*   Requires at least:      3.8
     
    4747             *  @var string
    4848            */
    49             public $version = '11.1.0';
     49            public $version = '11.1.1';
    5050
    5151            /**
  • pitchprint/tags/11.1.1/readme.txt

    r3391124 r3391719  
    44Requires at least: 3.8
    55Tested up to: 6.8
    6 Stable tag: 11.1.0
     6Stable tag: 11.1.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    172172
    173173== Changelog ==
     174
     175== 11.1.1 =
     176Minor fix to skip clearing customization if the call is an ajax with `ppc-simulate-cart`
    174177
    175178== 11.1.0 =
  • pitchprint/trunk/CHANGELOG.txt

    r3391124 r3391719  
     1== 11.1.1 =
     2Minor fix to skip clearing customization if the call is an ajax with `ppc-simulate-cart`
     3
    14== 11.1.0 =
    25Fixed an issue where the editor class is duplicated when a variable product is set
  • pitchprint/trunk/functions/front/carts.php

    r3391124 r3391719  
    1212            $cart_item_data[PITCHPRINT_CUSTOMIZATION_KEY] = $value;
    1313           
    14             // Only delete if we're actually adding to cart (not just checking)
    15             if (doing_action('woocommerce_add_to_cart')) {
     14            // Don't delete during cart simulation or validation checks
     15            $is_simulation = isset($_GET['wc-ajax']) && $_GET['wc-ajax'] === 'ppc-simulate-cart';
     16           
     17            if (!$is_simulation) {
    1618                General\delete_customization_data($product_id);
    1719            }
  • pitchprint/trunk/pitchprint.php

    r3391124 r3391719  
    66*   Description:            A beautiful web based print customization app for your online store. Integrates with WooCommerce.
    77*   Author:                 PitchPrint, Inc.
    8 *   Version:                11.1.0
     8*   Version:                11.1.1
    99*   Author URI:             https://pitchprint.com
    1010*   Requires at least:      3.8
     
    4747             *  @var string
    4848            */
    49             public $version = '11.1.0';
     49            public $version = '11.1.1';
    5050
    5151            /**
  • pitchprint/trunk/readme.txt

    r3391124 r3391719  
    44Requires at least: 3.8
    55Tested up to: 6.8
    6 Stable tag: 11.1.0
     6Stable tag: 11.1.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    172172
    173173== Changelog ==
     174
     175== 11.1.1 =
     176Minor fix to skip clearing customization if the call is an ajax with `ppc-simulate-cart`
    174177
    175178== 11.1.0 =
Note: See TracChangeset for help on using the changeset viewer.