Changeset 3397914
- Timestamp:
- 11/18/2025 10:00:15 AM (4 months ago)
- Location:
- shipbubble
- Files:
-
- 59 added
- 3 edited
-
tags/2.10.1 (added)
-
tags/2.10.1/admin (added)
-
tags/2.10.1/admin/css (added)
-
tags/2.10.1/admin/css/styles-wc.css (added)
-
tags/2.10.1/admin/index.php (added)
-
tags/2.10.1/admin/js (added)
-
tags/2.10.1/admin/js/ajax-create-shipment.js (added)
-
tags/2.10.1/admin/js/ajax-validate-address.js (added)
-
tags/2.10.1/admin/js/ajax-validate-auth.js (added)
-
tags/2.10.1/admin/settings (added)
-
tags/2.10.1/admin/settings/js (added)
-
tags/2.10.1/admin/settings/js/settings.js (added)
-
tags/2.10.1/admin/settings/settings-menu.php (added)
-
tags/2.10.1/admin/settings/templates (added)
-
tags/2.10.1/admin/settings/templates/api-keys.php (added)
-
tags/2.10.1/admin/settings/templates/local-pickup.php (added)
-
tags/2.10.1/admin/settings/templates/sender-details.php (added)
-
tags/2.10.1/admin/woocommerce (added)
-
tags/2.10.1/admin/woocommerce/async-create-shipment.php (added)
-
tags/2.10.1/admin/woocommerce/async-validate-address.php (added)
-
tags/2.10.1/admin/woocommerce/enqueue-styles.php (added)
-
tags/2.10.1/admin/woocommerce/orders.php (added)
-
tags/2.10.1/admin/woocommerce/shipping-settings.php (added)
-
tags/2.10.1/admin/wordpress (added)
-
tags/2.10.1/admin/wordpress/async-validate-auth.php (added)
-
tags/2.10.1/admin/wordpress/index.php (added)
-
tags/2.10.1/admin/wordpress/settings-callback.php (added)
-
tags/2.10.1/admin/wordpress/settings-field-validation.php (added)
-
tags/2.10.1/admin/wordpress/settings-menu.php (added)
-
tags/2.10.1/admin/wordpress/settings-page.php (added)
-
tags/2.10.1/admin/wordpress/settings-register.php (added)
-
tags/2.10.1/includes (added)
-
tags/2.10.1/includes/compatibilities.php (added)
-
tags/2.10.1/includes/constants.php (added)
-
tags/2.10.1/includes/core-methods.php (added)
-
tags/2.10.1/includes/endpoints.php (added)
-
tags/2.10.1/includes/index.php (added)
-
tags/2.10.1/index.php (added)
-
tags/2.10.1/languages (added)
-
tags/2.10.1/languages/index.php (added)
-
tags/2.10.1/license.txt (added)
-
tags/2.10.1/public (added)
-
tags/2.10.1/public/async-checkout-couriers.php (added)
-
tags/2.10.1/public/css (added)
-
tags/2.10.1/public/css/styles-wc.css (added)
-
tags/2.10.1/public/images (added)
-
tags/2.10.1/public/images/logo.svg (added)
-
tags/2.10.1/public/js (added)
-
tags/2.10.1/public/js/blockui (added)
-
tags/2.10.1/public/js/blockui/jquery.blockUI.js (added)
-
tags/2.10.1/public/js/couriers-on-checkout.js (added)
-
tags/2.10.1/public/js/shipbubble-local-pickup.js (added)
-
tags/2.10.1/public/js/sweetalert2.min.js (added)
-
tags/2.10.1/public/woocommerce (added)
-
tags/2.10.1/public/woocommerce/checkout.php (added)
-
tags/2.10.1/public/woocommerce/enqueue-styles.php (added)
-
tags/2.10.1/readme.txt (added)
-
tags/2.10.1/shipbubble.php (added)
-
tags/2.10.1/uninstall.php (added)
-
trunk/public/js/couriers-on-checkout.js (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/shipbubble.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shipbubble/trunk/public/js/couriers-on-checkout.js
r3394617 r3397914 153 153 } 154 154 155 let shippingNotice = $('<div>', { 156 id: 'shipping-notice', 157 class: 'woocommerce-error', 158 style: 'font-size:16px', 159 }).text(`Ensure that you have filled your ${errorBox.join(', ')}`); 160 161 if ($('#order_review_heading').length === 0) { 162 // put shipping notice before the div with class .shipbubble-delivery-method-container 163 shippingNotice.prependTo('.shipbubble-delivery-method-container').show(); 164 } else { 165 shippingNotice.appendTo('#order_review_heading').show(); 166 } 155 Swal.fire({ 156 title: '', 157 text: `Ensure that you have filled your ${errorBox.join(', ')}`, 158 showConfirmButton: false, 159 showCloseButton: true, 160 width: 400, 161 customClass: { 162 closeButton: "shipbubble-close-button" 163 } 164 }); 165 166 // if ($('#order_review_heading').length === 0) { 167 // // put shipping notice before the div with class .shipbubble-delivery-method-container 168 // shippingNotice.prependTo('.shipbubble-delivery-method-container').show(); 169 // } else { 170 // shippingNotice.appendTo('#order_review_heading').show(); 171 // } 167 172 168 173 $(requestRatesBtn).prop('checked', false) … … 294 299 } 295 300 296 $('<div>', {297 id: 'shipping-notice',298 class: 'woocommerce-info',299 style: 'font-size:16px',300 }).text(`${responseMessage}`).appendTo('#order_review_heading').show();301 302 301 Swal.fire({ 303 302 title: '', … … 325 324 list.empty(); 326 325 327 $('<div>', { 328 id: 'shipping-notice', 329 class: 'woocommerce-error', 330 style: 'font-size:16px', 331 }).text(`unable to display couriers list, please try again later`).appendTo('#order_review_heading').show(); 326 Swal.fire({ 327 title: '', 328 text: `Unable to display couriers list, please try again later`, 329 showConfirmButton: false, 330 showCloseButton: true, 331 width: 400, 332 customClass: { 333 closeButton: "shipbubble-close-button" 334 } 335 }); 332 336 333 337 }); -
shipbubble/trunk/readme.txt
r3394617 r3397914 5 5 Requires at least: 4.0 6 6 Tested up to: 6.5 7 Stable tag: 2.10 7 Stable tag: 2.10.1 8 8 Requires PHP: 5.6 9 9 License: GPLv3 or later … … 70 70 71 71 == Changelog == 72 = 2.10.1 = 73 * Improvements 74 72 75 = 2.10 = 73 76 * FunnelKit compability update -
shipbubble/trunk/shipbubble.php
r3394617 r3397914 9 9 * Requires at least: 4.0 10 10 * Tested up to: 6.8 11 * Version: 2.10 11 * Version: 2.10.1 12 12 * Requires PHP: 5.6 13 13 * Text Domain: shipbubble
Note: See TracChangeset
for help on using the changeset viewer.