Optional Delivery Date – While Uploading CSV
-
The Delivery Date while uploading CSV is not optional hence when you upload CSV without the Delivery Date it does not insert the content.
This could be a problem if you are importing Bulk pin codes and cannot set the delivery date for each Pincode.
Found a Simple Fix
In wczp_admin.php
// Check if variable is empty or not
if(!empty($pincode) && !empty($city) && !empty($state) && !empty($ddate) )Just remove the (!) (NOT) from $empty($ddate)
New Code should look like:
if(!empty($pincode) && !empty($city) && !empty($state) && empty($ddate) ) {Hope it helps!!
Can’t Thank Enough to vp956009 for Developing Such awesome Plugin.
Please Keep Updating this app. Let people support it, would love to see a donate link to support this app.
- The topic ‘Optional Delivery Date – While Uploading CSV’ is closed to new replies.