Once a customer has created a booking they have to fill in their billing information. Can you tell me where to change the default text thats located in the input fields. Currently it has dummy information inserted to save time during testing and I cannot find where to delete it.
Thanks,
Gerard
Hi,
To disable the dummy data you have to go to joomla_installation/administrator/components/com_jhotelreservation/assets/defines.php and set the constant DSC to 0.
Hi,
Please replace
if( !defined( 'DSC_FILL_GUEST') ) define( 'DSC_FILL_GUEST',1);
with
if( !defined( 'DSC_FILL_GUEST') ) define( 'DSC_FILL_GUEST',0);
That worked a treat.
Thanks,