Changeset 3410852
- Timestamp:
- 12/04/2025 12:03:14 PM (4 months ago)
- Location:
- shipo/trunk
- Files:
-
- 5 edited
-
assets/js/checkout.js (modified) (1 diff)
-
includes/class-shipo-order.php (modified) (1 diff)
-
includes/class-shipo-wc-shipping.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
shipo.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shipo/trunk/assets/js/checkout.js
r3403157 r3410852 233 233 clearMapElements(); 234 234 235 if( recipientType == 'locker'&& recipientSlug && recipientCoord) {235 if((recipientType == 'locker' || recipientType == 'pudo') && recipientSlug && recipientCoord) { 236 236 var lockerWrapper = $('<div>', { 237 237 id: 'shipo-locker-wrapper' -
shipo/trunk/includes/class-shipo-order.php
r3404077 r3410852 101 101 $shipment_data["sender_address_id"] = (int)$this->order->get_meta('_shipo_address_id'); 102 102 103 if($recipient_address_type == 'locker' ) {103 if($recipient_address_type == 'locker' || $recipient_address_type == 'pudo') { 104 104 $shipment_data["recipient_address_id"] = $this->order->get_meta('_shipo_locker_system_id'); 105 105 $shipment_data["locker_data"] = json_decode($this->order->get_meta('_shipo_locker_data_json'), true); -
shipo/trunk/includes/class-shipo-wc-shipping.php
r3404077 r3410852 323 323 $title = ($rate['rate_type'] != '') ? $preTitle . $rate['courier'] . ' ' . $rate['rate_type'] : $preTitle . $rate['courier']; 324 324 325 if ($rate['recipient_address_type'] == 'locker' ) {325 if ($rate['recipient_address_type'] == 'locker' || $rate['recipient_address_type'] == 'pudo') { 326 326 $title = 'Livrare la ' . ucfirst($rate['recipient_address_type_name']) . ' - ' . $rate['courier']; 327 327 } -
shipo/trunk/readme.txt
r3404077 r3410852 3 3 Contributors: Shipo 4 4 Requires at least: 4.7 5 Tested up to: 6. 86 Stable tag: 1. 25 Tested up to: 6.9 6 Stable tag: 1.3 7 7 Requires PHP: 8.0 8 8 License: GPLv2 or later … … 50 50 51 51 Bug fix 52 53 = 1.3 = 54 55 Showing all lockers -
shipo/trunk/shipo.php
r3404077 r3410852 3 3 * Plugin Name: Shipo 4 4 * Description: Shipo connects your webshop with top couriers instantly, no contract. Ship to address or locker, pay only when parcels are delivered. 5 * Version: 1. 25 * Version: 1.3 6 6 * Author: Shipo 7 7 * Author URI: https://shipo.ro … … 16 16 17 17 // Define plugin constants 18 define('SHIPO_PLUGIN_VERSION', '1. 2.0');18 define('SHIPO_PLUGIN_VERSION', '1.3.0'); 19 19 define('SHIPO_PLUGIN_DIR', plugin_dir_path(__FILE__)); 20 20 define('SHIPO_PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.