Unable choosing certain dates

Unable choosing certain dates

Hi,

I'm currently using a 1.9.2 widget on my store.


  1. {{ 'http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css' | stylesheet_tag }}
  2. {{ '//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js' | script_tag }}

  3. <div style="width:300px; clear:both;">
  4.   <p>
  5.     <label for="date">Pick a delivery date at least 3 weeks ahead your arrival:</label>
  6.     <input id="date" type="text" name="attributes[date]" value="{{ cart.attributes.date }}"class="required"/>
  7.   </p>
  8. </div>

  9. <script>
  10. jQuery(function() {
  11.   jQuery("#date").datepicker( { 
  12.     minDate: +15, 
  13.     maxDate: "+2M"
  14.   } );
  15. });
  16. </script>

And I need to unable choosing a specific date on the widget, I don't want my customers to choose all Mondays. 

How can we set this up?

Best regards,

Fabien.