• Resolved meglio

    (@meglio)


    We use custom shipping methods. Some of them don’t have any tracking system. However, WCMp keeps asking vendors to fill in two required fields: Tracking Number and Tracking URL – every time they click on “Mark as shipped”. How do I turn this dialog OFF for particular custom shipping methods?

Viewing 8 replies - 1 through 8 (of 8 total)
  • @meglio, The default flow of our plugin makes the shipping tracking mandatory. So, in order to remove this restriction, you have to do a bit of custom coding.

    For that, override our vendor_orders.php template by copying it to yourtheme/dc-product-vendor/vendor-dashboard/vendor-orders.php and replace with the following line-

    <div class="modal-body">
       <div class="form-group">
           <label for="tracking_url"><?php _e('Enter Tracking Url', 'dc-woocommerce-multi-vendor'); ?> *</label>
           <input type="text" class="form-control" id="email" name="tracking_url" >
       </div>
       <div class="form-group">
           <label for="tracking_id"><?php _e('Enter Tracking ID', 'dc-woocommerce-multi-vendor'); ?> *</label>
           <input type="text" class="form-control" id="pwd" name="tracking_id" >
       </div>
    </div>

    Thanks for this!
    But why require tracking for an order with local pickup?

    Hi @dico, the tracking shipping option triggers when the “Shipping” option is enabled via WCMp >> Setting >> Payment.

    However, let us look into the code, whether you can hide the shpping tracking option for the Locak picup option by some custom code.

    Following for future updates.
    Thanks

    @tomacco, we will look into this feature request. We would defiantly like to add this feature in our plugin. However, sharing an ETA will be difficult at this moment.

    In our latest release we disabled the tracking for local pickup. Kindly check.

    Hello I use wc marketplace. My vendors can’t enter shipping track info. It was dissapering before. Am I wrong ? What must I do ?

    Hi @serdarozbilen, make sure you have enabled the option “Enable Vendor Shipping” via WCMp >> Settings >> General: https://prnt.sc/l4qi7m. This option will let the vendor access shipping option.

    Now, if you also want to send shipping payment to the vendor, then also activate the option “Shipping” via WCMp >> Settings >> payment, see this scrrenshot – https://prnt.sc/l4qj0c

    Let us know if you need any further help.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘How to turn Off required tracking details dialog for custom shipping methods?’ is closed to new replies.