Changeset 3156194
- Timestamp:
- 09/23/2024 09:29:08 AM (18 months ago)
- Location:
- shipbubble
- Files:
-
- 43 added
- 3 edited
-
tags/2.5.2 (added)
-
tags/2.5.2/admin (added)
-
tags/2.5.2/admin/css (added)
-
tags/2.5.2/admin/css/styles-wc.css (added)
-
tags/2.5.2/admin/index.php (added)
-
tags/2.5.2/admin/js (added)
-
tags/2.5.2/admin/js/ajax-create-shipment.js (added)
-
tags/2.5.2/admin/js/ajax-validate-address.js (added)
-
tags/2.5.2/admin/woocommerce (added)
-
tags/2.5.2/admin/woocommerce/async-create-shipment.php (added)
-
tags/2.5.2/admin/woocommerce/async-validate-address.php (added)
-
tags/2.5.2/admin/woocommerce/enqueue-styles.php (added)
-
tags/2.5.2/admin/woocommerce/orders.php (added)
-
tags/2.5.2/admin/woocommerce/shipping-settings.php (added)
-
tags/2.5.2/admin/wordpress (added)
-
tags/2.5.2/admin/wordpress/async-validate-auth.php (added)
-
tags/2.5.2/admin/wordpress/index.php (added)
-
tags/2.5.2/includes (added)
-
tags/2.5.2/includes/constants.php (added)
-
tags/2.5.2/includes/core-methods.php (added)
-
tags/2.5.2/includes/endpoints.php (added)
-
tags/2.5.2/includes/index.php (added)
-
tags/2.5.2/index.php (added)
-
tags/2.5.2/languages (added)
-
tags/2.5.2/languages/index.php (added)
-
tags/2.5.2/license.txt (added)
-
tags/2.5.2/public (added)
-
tags/2.5.2/public/async-checkout-couriers.php (added)
-
tags/2.5.2/public/css (added)
-
tags/2.5.2/public/css/styles-wc.css (added)
-
tags/2.5.2/public/images (added)
-
tags/2.5.2/public/images/logo.svg (added)
-
tags/2.5.2/public/js (added)
-
tags/2.5.2/public/js/blockui (added)
-
tags/2.5.2/public/js/blockui/jquery.blockUI.js (added)
-
tags/2.5.2/public/js/couriers-on-checkout.js (added)
-
tags/2.5.2/public/js/sweetalert2.min.js (added)
-
tags/2.5.2/public/woocommerce (added)
-
tags/2.5.2/public/woocommerce/checkout.php (added)
-
tags/2.5.2/public/woocommerce/enqueue-styles.php (added)
-
tags/2.5.2/readme.txt (added)
-
tags/2.5.2/shipbubble.php (added)
-
tags/2.5.2/uninstall.php (added)
-
trunk/public/woocommerce/checkout.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/shipbubble.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shipbubble/trunk/public/woocommerce/checkout.php
r3101414 r3156194 166 166 167 167 $post_data = []; 168 168 169 if (isset($_POST['post_data'])) { 169 170 wp_parse_str($_POST['post_data'], $post_data); 170 171 // $post_data = array_map( 'sanitize_text_field', $post_data ); 172 } elseif (isset($_POST['shipbubble_courier_set'])) { 173 $post_data = $_POST; 174 } 175 176 if (!empty($post_data)) { 171 177 foreach ($post_data as $key => $value) { 172 178 if (is_array($value)) { … … 176 182 } 177 183 } 178 179 // error_log(print_r($post_data, true));180 184 } 181 185 -
shipbubble/trunk/readme.txt
r3154860 r3156194 1 === Shipbubble - Shipping rates at checkout===1 === Shipbubble - Shipping Automation for Woocommerce === 2 2 Contributors: Shipbubble 3 3 Donate link: https://www.shipbubble.com/ … … 5 5 Requires at least: 4.0 6 6 Tested up to: 6.5 7 Stable tag: 2.5. 17 Stable tag: 2.5.2 8 8 Requires PHP: 5.6 9 9 License: GPLv3 or later … … 70 70 71 71 == Changelog == 72 = 2.5.2 = 73 * Currncy plugin checkout support fix. 74 72 75 = 2.5.1 = 73 76 * Checkout error alert support for selected themes. -
shipbubble/trunk/shipbubble.php
r3149402 r3156194 9 9 * Requires at least: 4.0 10 10 * Tested up to: 6.5 11 * Version: 2.5. 111 * Version: 2.5.2 12 12 * Requires PHP: 5.6 13 13 * Text Domain: shipbubble
Note: See TracChangeset
for help on using the changeset viewer.