• Resolved Mani Khan

    (@mani-khan)


    Hello team ??
    In the vendor dashboard when a vendor try to change its order status from processing to SHIPPED then a pop-up appears and requires Shipping Tracking Info and i noticed that this information is REQUIRED to change order status from processing to SHIPPED ??
    Could you please help me out to make this pop-up OPTIONAL or disable, so that a vendor could change its order status without filling this tracking info form.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • You have to override “vendor-orders-item” template by copying it to yourtheme/dc-product-vendor/vendor-dashboard/vendor-orders/vendor-orders-item.php
    And set all the follows fields

    <input type="hidden" name="shipping_tracking_url" id="shipping_tracking_url_<?php echo $order; ?>" >
    <input type="hidden" name="shipping_tracking_id" id="shipping_tracking_id_<?php echo $order; ?>" >

    with a default value like :

    <input type="hidden" name="shipping_tracking_url" id="shipping_tracking_url_<?php echo $order; ?>" value="your default value" >
    <input type="hidden" name="shipping_tracking_id" id="shipping_tracking_id_<?php echo $order; ?>" value="your default value" >

    Let us know if you have any further query.

Viewing 1 replies (of 1 total)
  • The topic ‘How to make TRACKING POP-UP optional?’ is closed to new replies.