Plugin Directory

Changeset 3285372


Ignore:
Timestamp:
05/01/2025 04:41:29 AM (11 months ago)
Author:
bitsstech
Message:

bug fix in shiprocket order object filter

Location:
shipment-tracker-for-woocommerce/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • shipment-tracker-for-woocommerce/trunk/bt-sync-shipment-tracking.php

    r3284722 r3285372  
    1717 * Plugin URI:        https://shipment-tracker-for-woocommerce.bitss.tech/
    1818 * 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.1
     19 * Version:           1.4.24.8
    2020 * Author:            Bitss Techniques
    2121 * Author URI:        https://shipment-tracker-for-woocommerce.bitss.tech
     
    5959
    6060define( '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' );
     61define( 'BT_SYNC_SHIPMENT_TRACKING_VERSION', '1.4.24.8' );
    6262define( 'BT_SHIPPING_PROVIDERS', array('delhivery' =>'Delhivery','nimbuspost' => 'Nimbuspost (Deprecated)','nimbuspost_new' => 'Nimbuspost','shipmozo'=>'Shipmozo','shiprocket' => 'Shiprocket', 'xpressbees' => 'Xpressbees', 'manual' =>'Custom Shipping') );
    6363define( '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  
    698698        $so["height"] = $total_height_cm>0?$total_height_cm:0.5;
    699699        $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 );
    701701        return $so;
    702702    }
Note: See TracChangeset for help on using the changeset viewer.