Changeset 3403900
- Timestamp:
- 11/27/2025 09:03:21 AM (3 months ago)
- Location:
- boxo-return
- Files:
-
- 8 edited
- 1 copied
-
tags/0.0.65 (copied) (copied from boxo-return/trunk)
-
tags/0.0.65/boxo-return.php (modified) (2 diffs)
-
tags/0.0.65/checkout/boxo-checkout.js (modified) (1 diff)
-
tags/0.0.65/checkout/checkout.php (modified) (1 diff)
-
tags/0.0.65/readme.txt (modified) (2 diffs)
-
trunk/boxo-return.php (modified) (2 diffs)
-
trunk/checkout/boxo-checkout.js (modified) (1 diff)
-
trunk/checkout/checkout.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
boxo-return/tags/0.0.65/boxo-return.php
r3394986 r3403900 2 2 /* 3 3 * Plugin Name: BOXO Return 4 * Version: 0.0.6 44 * Version: 0.0.65 5 5 * Requires at least: 6.5 6 6 * Requires PHP: 7.1 … … 22 22 } 23 23 24 const BOXO_RETURN_PLUGIN_VERSION = "0.0.6 4";24 const BOXO_RETURN_PLUGIN_VERSION = "0.0.65"; 25 25 26 26 include plugin_dir_path(__FILE__) . 'includes/constants.php'; -
boxo-return/tags/0.0.65/checkout/boxo-checkout.js
r3394986 r3403900 25 25 // If anything goes wrong, do not block the AJAX request. 26 26 try { 27 if (!options.url?. includes('wc-ajax=update_order_review')) {27 if (!options.url?.match(/(wc-ajax=update_order_review|wc-ajax=checkout)/)) { 28 28 return 29 29 } -
boxo-return/tags/0.0.65/checkout/checkout.php
r3394986 r3403900 239 239 } 240 240 241 $selected _packaging= self::get_selected_packaging();242 $packaging = self::boxo_available_for_request()['available'] && is_string($selected _packaging)243 ? sanitize_text_field($selected _packaging)241 $selected = self::get_selected_packaging(); 242 $packaging = self::boxo_available_for_request()['available'] && is_string($selected) 243 ? sanitize_text_field($selected) 244 244 : Boxo_Constants::PACKAGING_DISPOSABLE; 245 245 $order->update_meta_data('boxo_packaging', $packaging); -
boxo-return/tags/0.0.65/readme.txt
r3394986 r3403900 4 4 Requires at least: 6.5 5 5 Tested up to: 6.8.3 6 Stable tag: 0.0.6 46 Stable tag: 0.0.65 7 7 Requires PHP: 7.1 8 8 License: GPLv2 or later … … 26 26 27 27 == Changelog == 28 29 = 0.0.65 = 30 Expand support for custom checkouts. 28 31 29 32 = 0.0.64 = -
boxo-return/trunk/boxo-return.php
r3394986 r3403900 2 2 /* 3 3 * Plugin Name: BOXO Return 4 * Version: 0.0.6 44 * Version: 0.0.65 5 5 * Requires at least: 6.5 6 6 * Requires PHP: 7.1 … … 22 22 } 23 23 24 const BOXO_RETURN_PLUGIN_VERSION = "0.0.6 4";24 const BOXO_RETURN_PLUGIN_VERSION = "0.0.65"; 25 25 26 26 include plugin_dir_path(__FILE__) . 'includes/constants.php'; -
boxo-return/trunk/checkout/boxo-checkout.js
r3394986 r3403900 25 25 // If anything goes wrong, do not block the AJAX request. 26 26 try { 27 if (!options.url?. includes('wc-ajax=update_order_review')) {27 if (!options.url?.match(/(wc-ajax=update_order_review|wc-ajax=checkout)/)) { 28 28 return 29 29 } -
boxo-return/trunk/checkout/checkout.php
r3394986 r3403900 239 239 } 240 240 241 $selected _packaging= self::get_selected_packaging();242 $packaging = self::boxo_available_for_request()['available'] && is_string($selected _packaging)243 ? sanitize_text_field($selected _packaging)241 $selected = self::get_selected_packaging(); 242 $packaging = self::boxo_available_for_request()['available'] && is_string($selected) 243 ? sanitize_text_field($selected) 244 244 : Boxo_Constants::PACKAGING_DISPOSABLE; 245 245 $order->update_meta_data('boxo_packaging', $packaging); -
boxo-return/trunk/readme.txt
r3394986 r3403900 4 4 Requires at least: 6.5 5 5 Tested up to: 6.8.3 6 Stable tag: 0.0.6 46 Stable tag: 0.0.65 7 7 Requires PHP: 7.1 8 8 License: GPLv2 or later … … 26 26 27 27 == Changelog == 28 29 = 0.0.65 = 30 Expand support for custom checkouts. 28 31 29 32 = 0.0.64 =
Note: See TracChangeset
for help on using the changeset viewer.