You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Easy!Appointments - Support Group
What you can do is use some Javascript to hide the "next" button unless the box id checked. You would have to make the next button hidden and if checked the button is shown. If you google this you will see several different methods to get this done.
Ondřej Šabrňák
unread,
Aug 15, 2017, 7:13:34 AM8/15/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Easy!Appointments - Support Group
Update: I added this script and everything work perfectly!
$("#button-next-3").hide();
$("#agree").click(function() {
if($(this).is(":checked")) {
$("#button-next-3").show();
} else {
$("#button-next-3").hide();
}
});
Reza
unread,
Jun 23, 2018, 5:17:12 AM6/23/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Easy!Appointments - Support Group
Where did you add this script?
Craig Tucker
unread,
Jun 25, 2018, 1:19:27 AM6/25/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Easy!Appointments - Support Group
Ondřej would have put the script in /assets/js/frontend_book.js
The script would be linked to the HTML he is using in /application/views/appointments/book.php
Ondřej does not show the HTML he is using in the view but from his Java Script it looks like he has a simple check box that is linked to some text that they agree to.
Alex Tselegidis
unread,
Jun 25, 2018, 2:30:59 AM6/25/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Easy!Appointments - Support Group
Hello everyone!
I'd like to inform you that the latest Beta 1.3.2, supports legal text integration and cookie notices by default.
You can setup your text in the backend settings page and display the "Agreement" checkboxes in the booking page.