Robert DeVore
Forum Replies Created
-
Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] issue and requestI cannot say for sure without seeing the code along with the theme/plugins you’re using on your site and testing it myself.
However, I can verify that I’ve tested this code snippet on two separate installs and it works correctly.
Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] Delivery Driver Pro Not WorkingDuplicate thread (link).
New versions of DDWC and the DDWC Pro plugins have been released today with multille bug fixes and enhancements.
Please let me know if these updates have fixed the issues you’ve been experiencing.
If you would still like a refund for your order, that is not a problem.
Please submit a request via the website along with your order number and I’ll get that processed right away.
Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] Google Maps Platform rejected your requestFor the map restrictions issue, that sounds like Google isn’t recognizing the site URL you’re adding into the restrictions since it’s fetching fine without a restriction in place.
As for your question, do you mean there should be a button for the driver to click and open their google maps app with the directions for them to follow?
It’s not something included by default but I’ve made a note to look into this further and see if there’s a universally useful way of including it.
There’s filters for the map that would allow you to customize the output and include a button like that.
View available filters.
Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] The delivery address returning NULLAwesome, glad that fixed it for you!
The starting location is set to the store address by default, but I’m working on a way to get the driver’s current location.
GPS within the browser window is trickier than I originally thought, but I have made some headway on this feature and will get it released ASAP.
Thanks!
Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] No email notificationThe email delivery issue has been noted and is currently being worked on so a release will be published ASAP.
I’m going to close this ticket out for now since it’s this support area is for our free version of the plugin, and pro support is handled through our website.
The next DDWC Pro plugin is just about ready and after some final testing will be released.
Thanks!
Thanks for letting me know about this issue. It definitely shouldn’t be requiring multiple page refreshes, so I’ll check into this to see if I can find the issue.
What theme are you currently using?
For the AJAX pulls, I agree that this would be the better solution for order status updating.
I haven’t had the time to write up and test this code, but the plugin is always open for pull requests on it’s Github repo ??
https://github.com/deviodigital/delivery-drivers-for-woocommerce
Thanks!
There’s not a way built-in for this feature, but you could customize the map with this filter which controls the google map display:
ddwc_delivery_address_google_map
This would require you write a custom function and add it to your theme’s functions.php file.
As this is a customization feature, I am not able to provide a full code solution for you, but let me know if you run into any questions. Thanks!
Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] The delivery address returning NULLI appreciate the kind words ??
This is happening when the driver is viewing the order details?
If so can you double check the order and make sure there’s a billing/shipping address added to the order?
It sounds like the WooCommerce code that returns the address in this plugin isn’t finding one.
Hard to say with 100% certainty without looking over the site myself, but that’s the first place I’d check.
Let me know if that fixes it or not. Thanks!
Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] Google Maps Platform rejected your requestThank you, I’m glad you like the plugin!
For that error, it sounds like the API key added has restrictions on it.
Did you lock down the API key when you created it to only work on specific URLs?
I’d check in the Google API settings to see if there’s any restrictions in place.
Thanks!
Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] issue and requestIt looks like after the URL you have ;; but it should be ‘;
Let me know if that fixes it. Thanks!
Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] Driver registration with areaDo you mean having the drivers only assigned orders from a specific shipping zone?
So for instance Driver #1 is set to only receive deliveries from Zone A, and Driver #2 is set to receive deliveries from Zone #2, etc?
That’s not a feature that’s currently built into the plugin, but it’s on the list of new features to work on and should be making it’s way into a new release soon.
Thanks!
Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] have to reconnect to see list of ordersLet me make sure I’m understanding correctly:
1. The driver completes an order
2. The driver goes back to the “Driver Dashboard”
3. Driver does not see any assigned orders
4. Driver logs out and back in again
5. Driver then sees the assigned orders working correctlyIs that correct?
If so, that’s something I have not seen before, so I cannot say offhand what the cause of that would be without seeing the site in question and testing out the pages myself.
If you’d like to have me look into this for you further, please submit a support request via our website – https://www.deviodigital.com
Thanks!
Forum: Plugins
In reply to: [Delivery Drivers for WooCommerce] issue and requestThanks for the compliment, I’m happy you like the plugin ??
On the “Edit Order” screen (the first screen), after you select the driver in the metabox, have you also updated the order status to “Driver Assigned”?
On the second screen (the one showing all WooCommerce orders), there’s code that automatically changes the order status when you change the selected driver.
However, that auto-changing doesn’t happen on the main “Edit Order” screen. I’ll look into this for a future release.
And for the redirect, do you mean when the driver logs in? Instead of redirecting them to the driver dashboard page, have it go to the main my-account page?
If so, you can add the following code to your theme’s functions.php file and change the YOUR_URL_HERE portion to your website’s my-account URL (the full URL)
https://gist.github.com/robertdevore/bc1a1abaca7135a1a08b701f93596139
Any other questions, let me know. Thanks!
Forum: Plugins
In reply to: [Delivery Times for WooCommerce] Date FormatThere is a filter in the plugin that you can use to customize the date output:
dtwc_date_format
You can add the filter to your themes functions.php file and customize the date format as needed.
Here’s an example with the date format like you’d want it to look:
https://gist.github.com/robertdevore/a1a34bf1870967ba567e461e53f216de
Any other questions, let me know. Thanks!