- Posts: 30
- Thank you received: 0
Edit setting and style in service page
- anna
- Topic Author
- Offline
- Junior Member
-
Less
More
10 years 10 months ago #46504
by anna
Edit setting and style in service page was created by anna
Hi,
I need to know which files should I edit to change some settings and style in the service page because:
1) I need to show employee note before the Booking Button and I'd like to change the box color. (att. 1)
2) I need to edit the style of the Additional Services boxes (padding, margin etc.) (att. 2)
3) I need to link the marker map in a blank page because when user came back he is redirect to today and not to the day in which he was booking a service.
4) I need to edit the style of the area in which service is described (att. 3)
Thank you! A.
I need to know which files should I edit to change some settings and style in the service page because:
1) I need to show employee note before the Booking Button and I'd like to change the box color. (att. 1)
2) I need to edit the style of the Additional Services boxes (padding, margin etc.) (att. 2)
3) I need to link the marker map in a blank page because when user came back he is redirect to today and not to the day in which he was booking a service.
4) I need to edit the style of the area in which service is described (att. 3)
Thank you! A.
- Mr. Dam
-
- Offline
- Administrator
-
Less
More
- Posts: 13053
- Thank you received: 1696
10 years 10 months ago #46554
by Mr. Dam
Replied by Mr. Dam on topic Edit setting and style in service page
1) I need to show employee note before the Booking Button and I'd like to change the box color. (att. 1)
-> You can modify it in file:
components > com_osservicesbooking > helpers > calendar.php
<?php
if($employeeDetails->employee_notes != ""){
?>
<Br />
<div class="row-fluid bookingformdiv">
<div class="span12" style="background-color:#F1F1FA;padding:3px;font-size:11px;color:#63648D;">
<?php echo $employeeDetails->employee_notes;?>
</div>
</div>
<?php
}
?>
2) I need to edit the style of the Additional Services boxes (padding, margin etc.) (att. 2)
-> You can modify it in file:
components > com_osservicesbooking > helpers > calendar.php
<?php echo OsAppscheduleDefault::loadExtraFields($sid,$eid);?>
and
components > com_osservicesbooking > classes > default.php
components > com_osservicesbooking > classes > default.html.php
3) I need to link the marker map in a blank page because when user came back he is redirect to today and not to the day in which he was booking a service.
-> You can edit in file
components > com_osservicesbooking > helpers > common.php
function loadVenueInformation
4) I need to edit the style of the area in which service is described (att. 3)
-> You can edit in file
components > com_osservicesbooking > classes > ajax.html.php
function loadEmployeeFrames
Good luck
Dam
-> You can modify it in file:
components > com_osservicesbooking > helpers > calendar.php
<?php
if($employeeDetails->employee_notes != ""){
?>
<Br />
<div class="row-fluid bookingformdiv">
<div class="span12" style="background-color:#F1F1FA;padding:3px;font-size:11px;color:#63648D;">
<?php echo $employeeDetails->employee_notes;?>
</div>
</div>
<?php
}
?>
2) I need to edit the style of the Additional Services boxes (padding, margin etc.) (att. 2)
-> You can modify it in file:
components > com_osservicesbooking > helpers > calendar.php
<?php echo OsAppscheduleDefault::loadExtraFields($sid,$eid);?>
and
components > com_osservicesbooking > classes > default.php
components > com_osservicesbooking > classes > default.html.php
3) I need to link the marker map in a blank page because when user came back he is redirect to today and not to the day in which he was booking a service.
-> You can edit in file
components > com_osservicesbooking > helpers > common.php
function loadVenueInformation
4) I need to edit the style of the area in which service is described (att. 3)
-> You can edit in file
components > com_osservicesbooking > classes > ajax.html.php
function loadEmployeeFrames
Good luck
Dam
The following user(s) said Thank You: anna
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.