Hello Steave,
Not full clear what version you use.
also what I will propose may not work - because will need check data format for save to data base.
But you may try:
for book library version for Joomla 1.5 please open file
{yours site}/components/com_booklibrary/booklibrary.html.php
in it please find all rows with date like:
Code: |
<input class="inputbox" type="text" name="lend_from" id="lend_from" size="12" maxlength="10" value="<?php echo date("d-m-Y"); ?>" />
<input type="reset" class="button" value="..." onclick="return showCalendar('lend_from', 'dd-mm-y');" />
|
and replace in it data format to some like:
Code: |
<input class="inputbox" type="text" name="lend_from" id="lend_from" size="12" maxlength="10" value="<?php echo date("d-m-Y"); ?>" />
<input type="reset" class="button" value="..." onclick="return showCalendar('lend_from', 'dd-mm-y');" />
|
For Joomla1.6/1.7
You need find code like :
Code: |
<?php echo JHtml::_('calendar',date("Y-m-d"), 'rent_from','rent_from','%Y-%m-%d' ); ?>
|
But first please backup yours files first.
Also you may ask from us full custom version - with all features what you need
Thanks,
Ordasoft team