Hi,
I am using the default search the comes with the EE EE Default advancedh search example
I am trying to add 2 calendars to do a date range search, where the user can select the start and the end date. Can this be done in EE? i would appreciate step by step example
Instead of the default date range listed below that comes with EE search
<fieldset class=“fieldset”>
<legend>{lang:search_entries_from}</legend>
<select name=“date” [removed]>
<option value=“0” selected=“selected”>{lang:any_date}</option>
<option value=“1” >{lang:today_and}</option>
<option value=“7” >{lang:this_week_and}</option>
<option value=“30” >{lang:one_month_ago_and}</option>
<option value=“90” >{lang:three_months_ago_and}</option>
<option value=“180” >{lang:six_months_ago_and}</option>
<option value=“365” >{lang:one_year_ago_and}</option>
</select>
<div class=“default”>
<input type=‘radio’ name=‘date_order’ value=‘newer’ class=‘radio’ checked=“checked” /> {lang:newer}
<input type=‘radio’ name=‘date_order’ value=‘older’ class=‘radio’ /> {lang:older}
</div>
</fieldset>
thanks in advance