Hi,
Some remarks and questions:
1) On the demo page it is possible to enter a 'to' date which is before the first date!
2) The time picker in the demo does not work but is required, so ordering is impossible!
3) Can the 'to' date be disabled?
4) Can Delivery time be disabled?
5) Can a minimum delivery date like today + 2 days be set?
6) Will Delivery date(s) be printed in the invoice?
7) Is the extension multilingual?
Thanks for your answers!
Regards,
Eric
WE ARE IN LOVE WITH CLIENT
Recently, we discovered how client loving working with us by their 5 star recommedation
Top
Hi Eric,
Thank you for interested in our product.
Our one-page checkout plugin can do your requests except "5+6"
You can refer our Delivery date plugin at the following link:
https://cmsmart.net/virtuemart-extensions/product-delivery-date-for-virtuemart
it can do your "5" request
If you have any questions, don't hesitate to let me know
Regards,
Vincent
Hi,
You can use Jquery datepicker. Just insert the script before the in your template index.php or default.php file.
Input unavailable dates you want to disable for selection in your calendar, and set minDate to add or subtract numbers of days from today.
You can use firebug to check the input ID for what to put in (#date-from")
jQuery(function($){
var unavailableDates = ["18-7-2017","19-7-2017","20-7-2017","21-12-2015","22-12-2015","23-12-2015","24-12-2015"];
$( "#date-from" ).datepicker({
minDate: 5,
beforeShowDay: function(date) {
dmy = date.getDate() + "-" + (date.getMonth() + 1) + "-" + date.getFullYear();
if ($.inArray(dmy, unavailableDates) == -1) {
return [true, ""];
} else {
return [false, "", "Unavailable"];
}
}
});
});
Hi Paul,
Thank you so much for your suggestion.
We will refer your code and upgrade it for our plugin if possible.
This coupon code is my gratitude from bottom of my heart for your next order: VIN10
Regards,
Vincent