Changeset 3391719
- Timestamp:
- 11/07/2025 11:48:21 AM (3 months ago)
- Location:
- pitchprint
- Files:
-
- 8 edited
- 1 copied
-
tags/11.1.1 (copied) (copied from pitchprint/trunk)
-
tags/11.1.1/CHANGELOG.txt (modified) (1 diff)
-
tags/11.1.1/functions/front/carts.php (modified) (1 diff)
-
tags/11.1.1/pitchprint.php (modified) (2 diffs)
-
tags/11.1.1/readme.txt (modified) (2 diffs)
-
trunk/CHANGELOG.txt (modified) (1 diff)
-
trunk/functions/front/carts.php (modified) (1 diff)
-
trunk/pitchprint.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pitchprint/tags/11.1.1/CHANGELOG.txt
r3391124 r3391719 1 == 11.1.1 = 2 Minor fix to skip clearing customization if the call is an ajax with `ppc-simulate-cart` 3 1 4 == 11.1.0 = 2 5 Fixed 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 12 12 $cart_item_data[PITCHPRINT_CUSTOMIZATION_KEY] = $value; 13 13 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) { 16 18 General\delete_customization_data($product_id); 17 19 } -
pitchprint/tags/11.1.1/pitchprint.php
r3391124 r3391719 6 6 * Description: A beautiful web based print customization app for your online store. Integrates with WooCommerce. 7 7 * Author: PitchPrint, Inc. 8 * Version: 11.1. 08 * Version: 11.1.1 9 9 * Author URI: https://pitchprint.com 10 10 * Requires at least: 3.8 … … 47 47 * @var string 48 48 */ 49 public $version = '11.1. 0';49 public $version = '11.1.1'; 50 50 51 51 /** -
pitchprint/tags/11.1.1/readme.txt
r3391124 r3391719 4 4 Requires at least: 3.8 5 5 Tested up to: 6.8 6 Stable tag: 11.1. 06 Stable tag: 11.1.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 172 172 173 173 == Changelog == 174 175 == 11.1.1 = 176 Minor fix to skip clearing customization if the call is an ajax with `ppc-simulate-cart` 174 177 175 178 == 11.1.0 = -
pitchprint/trunk/CHANGELOG.txt
r3391124 r3391719 1 == 11.1.1 = 2 Minor fix to skip clearing customization if the call is an ajax with `ppc-simulate-cart` 3 1 4 == 11.1.0 = 2 5 Fixed an issue where the editor class is duplicated when a variable product is set -
pitchprint/trunk/functions/front/carts.php
r3391124 r3391719 12 12 $cart_item_data[PITCHPRINT_CUSTOMIZATION_KEY] = $value; 13 13 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) { 16 18 General\delete_customization_data($product_id); 17 19 } -
pitchprint/trunk/pitchprint.php
r3391124 r3391719 6 6 * Description: A beautiful web based print customization app for your online store. Integrates with WooCommerce. 7 7 * Author: PitchPrint, Inc. 8 * Version: 11.1. 08 * Version: 11.1.1 9 9 * Author URI: https://pitchprint.com 10 10 * Requires at least: 3.8 … … 47 47 * @var string 48 48 */ 49 public $version = '11.1. 0';49 public $version = '11.1.1'; 50 50 51 51 /** -
pitchprint/trunk/readme.txt
r3391124 r3391719 4 4 Requires at least: 3.8 5 5 Tested up to: 6.8 6 Stable tag: 11.1. 06 Stable tag: 11.1.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 172 172 173 173 == Changelog == 174 175 == 11.1.1 = 176 Minor fix to skip clearing customization if the call is an ajax with `ppc-simulate-cart` 174 177 175 178 == 11.1.0 =
Note: See TracChangeset
for help on using the changeset viewer.