- Posts: 8
- Thank you received: 0
SOLVED !!! removing notes box in Booking Form
- Helen
- Topic Author
- Offline
- New Member
-
Less
More
9 years 2 months ago - 9 years 2 months ago #78073
by Helen
SOLVED !!! removing notes box in Booking Form was created by Helen
Hi
I am trying to remove the Notes Box in the Booking Form - I have hidden the box with custom.css of
#notes {
display: none;
}
But I am left with the title "Notes" - any ideas where his is or is there another more effective way?
I am trying to remove the Notes Box in the Booking Form - I have hidden the box with custom.css of
#notes {
display: none;
}
But I am left with the title "Notes" - any ideas where his is or is there another more effective way?
Last edit: 9 years 2 months ago by Mr. Dam.
Please Log in or Create an account to join the conversation.
- Mr. Dam
-
- Offline
- Administrator
-
Less
More
- Posts: 13056
- Thank you received: 1696
9 years 2 months ago #78106
by Mr. Dam
Replied by Mr. Dam on topic removing notes box in Booking Form
Hi,
To remove field Notes in Checkout form, please follow these steps
1. Open file: components > com_osservicesbooking > classes > booking.html.php by Notepad
2. Please find
and remove it
and remove it
Good luck
Dam
To remove field Notes in Checkout form, please follow these steps
1. Open file: components > com_osservicesbooking > classes > booking.html.php by Notepad
2. Please find
Code:
<div class="span3 boldtext">
<?php echo JText::_('OS_NOTES')?>
</div>
<div class="span8">
<textarea name="notes" id="notes" cols="40" rows="4" class="inputbox"></textarea>
</div>
<div class="clearfix"></div>
and remove it
Code:
<div class="span3 boldtext">
<?php echo JText::_('OS_NOTES');?>
</div>
<div class="span8">
<?php
echo nl2br($note);
?>
</div>
<div class="clearfix"></div>
and remove it
Good luck
Dam
The following user(s) said Thank You: Helen
Please Log in or Create an account to join the conversation.
- Helen
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 8
- Thank you received: 0
9 years 2 months ago #78134
by Helen
Replied by Helen on topic removing notes box in Booking Form
Many thanks - worked a treat!
Please Log in or Create an account to join the conversation.
Moderators: Mr. Dam
Support
Documentation
Information
Copyright © 2025 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.