Habe hier ein Live Shopping Modul in meinem XTC Shop und möchte gerne eine Funktion deaktivieren, dass man bei den Feldern START und ENDE nur das Kalendermodul benutzen darf. Ich möche selbst eintippen können, da der Kalender nicht geht.
Wie mache ich das.
Das ist Stelle die ich vermute im Live Shopping PHP:
?php
echo xtc_draw_input_field('start_time', $sInfo -> start_time,
'readonly="readonly" id="start_time"');
echo xtc_image(DIR_WS_IMAGES . 'btn_calendar.gif', 'btn_calendar', '', '', 'id="btn_start_time" style="cursor: pointer;"');
?>
</td>
</tr>
<tr>
<td class="main"><?php echo TEXT_LS_END_TIME; ?> </td>
<td class="main">
<?php
echo xtc_draw_input_field('end_time', $sInfo -> end_time,
'readonly="readonly" id="end_time"');
echo xtc_image(DIR_WS_IMAGES . 'btn_calendar.gif', 'btn_calendar', '', '', 'id="btn_end_time" style="cursor: pointer;"');
?>