Changeset 3285372
- Timestamp:
- 05/01/2025 04:41:29 AM (11 months ago)
- Location:
- shipment-tracker-for-woocommerce/trunk
- Files:
-
- 2 edited
-
bt-sync-shipment-tracking.php (modified) (2 diffs)
-
includes/shipping_providers/shiprocket.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shipment-tracker-for-woocommerce/trunk/bt-sync-shipment-tracking.php
r3284722 r3285372 17 17 * Plugin URI: https://shipment-tracker-for-woocommerce.bitss.tech/ 18 18 * Description: Most comprehensive shipment tracking plugin that extends your woocommerce store with shipment related features. Keeps you & your customers informed about shipment movement. 19 * Version: 1.4.24. 7.119 * Version: 1.4.24.8 20 20 * Author: Bitss Techniques 21 21 * Author URI: https://shipment-tracker-for-woocommerce.bitss.tech … … 59 59 60 60 define( 'Carbon_Fields\URL', trailingslashit( plugin_dir_url( __FILE__ ) ) . 'vendor/htmlburger/carbon-fields/' );//fix for Bitnami installations. 61 define( 'BT_SYNC_SHIPMENT_TRACKING_VERSION', '1.4.24. 7.1' );61 define( 'BT_SYNC_SHIPMENT_TRACKING_VERSION', '1.4.24.8' ); 62 62 define( 'BT_SHIPPING_PROVIDERS', array('delhivery' =>'Delhivery','nimbuspost' => 'Nimbuspost (Deprecated)','nimbuspost_new' => 'Nimbuspost','shipmozo'=>'Shipmozo','shiprocket' => 'Shiprocket', 'xpressbees' => 'Xpressbees', 'manual' =>'Custom Shipping') ); 63 63 define( 'BT_SHIPPING_PROVIDERS_WITH_NONE', array('none' =>'none','delhivery' =>'Delhivery', 'nimbuspost' => 'Nimbuspost (OLD)','nimbuspost_new' => 'Nimbuspost(NEW)','shipmozo'=>'Shipmozo','shiprocket' => 'Shiprocket', 'xpressbees' => 'Xpressbees','manual' =>'Custom Shipping') ); -
shipment-tracker-for-woocommerce/trunk/includes/shipping_providers/shiprocket.php
r3282503 r3285372 698 698 $so["height"] = $total_height_cm>0?$total_height_cm:0.5; 699 699 $so["weight"] = $total_weight_kg>0?$total_weight_kg:0.1; 700 $so = apply_filters( 'bt_shiprocket_order_object', $ order_id, $so);700 $so = apply_filters( 'bt_shiprocket_order_object', $so , $order_id ); 701 701 return $so; 702 702 }
Note: See TracChangeset
for help on using the changeset viewer.