15 Dec 2021 00:00
|
gregvan
|
Hi,
I just noticed that the 12 pm (noon) doesn't exist in the time picker calendar. Is there a way to fix this problem?
Thanks
|
14 Dec 2021 12:37
|
retail7
|
Hello,
As a J! dev company we have a client who had exactly the same problem, so we figured out an easy solution for this problem with a free extension (RokCandy).
Also, it works well both with FontAwesome 4.7.x and 5.1.x as well.
You can check out our solution here: cloudhoreca.com/en/blog/icon-rsform-calendar-button.html
Regards,
Oliver M
|
16 Sep 2021 13:02
|
gilloux
|
Hello
For rentals of cottage, I would like that in the calendar we can not select only by week and not by day.
Thanks for your help
Gilles
|
14 Jun 2021 09:55
|
info260
|
Hello,
We are using RS form to make a reservation form
On that form we would like to disable Monday and tuesday
When looking in your forum we found the following code to disable weekends
I've tried using it and changing the selected days but nothing happens
<script type="text/javascript">
function rsfp_onSelectDate(date, type, args, calendar)
{
var dates = args[0];
var date = dates[0];
var year = date[0], month = date[1], day = date[2];
var d = new Date(year, month-1, day);
if...
This...
|
30 Apr 2021 15:20
|
contato3
|
Has anyone had this problem? I am not able to find a solution on the web.
I just installed the RSEvento Template! This error happens when I try to open the main page of the Events, Calendar
I'm using Joomla! 3.9.26
Error:
Call to undefined method rseventsproHelper::getFilterText()
|
27 Apr 2021 06:21
|
contact827
|
OK. I was in the wrong field.
But no change on the "Date and time picker" in the form.
And, to disable saturday and sunday, if finally I can make it working, which number to replace in :
if (d.getDay() == 0 || d.getDay() == 6)
|
26 Apr 2021 22:19
|
djseleco
|
You have to paste this code in Javascript tab that you can find on "CSS and Javascript" option (see the photo)
<script type="text/javascript">
function rsfp_onSelectDate(date, type, args, calendar)
{
var dates = args[0];
var date = dates[0];
var year = date[0], month = date[1], day = date[2];
var d = new Date(year, month-1, day);
if (d.getDay() == 0 || d.getDay() == 6) {
alert('Please select a date that is different from Saturday or Sunday!');...
|
26 Apr 2021 17:19
|
contact827
|
Hi
To disable the weekend in the calendar,
- In which field exactly to put this code
- How to change it for saturday and Sunday, please ?
<script type="text/javascript">
function rsfp_onSelectDate(date, type, args, calendar)
{
var dates = args[0];
var date = dates[0];
var year = date[0], month = date[1], day = date[2];
var d = new Date(year, month-1, day);
if (d.getDay() == 0 || d.getDay() == 1) {
alert('Please select a date that is different from Saturday or Sunday');
return false;... ...
|
02 Apr 2021 14:50
|
ROADSIDE
|
I successfully imported events from a Google calendar, but the process does not seem to also bring in the details such as descriptions or locations. Is there a way to do this, or am I missing something?
|
26 Mar 2021 07:43
|
wegwb
|
Ive seen an other calendar like a day view where i can pic the time .
Is it possible to implement this view?
Other questtion is it possible to insert a remember function (like e-mail to user/admin) for the choosen date?
|
10 Mar 2021 11:44
|
info5345
|
Hello, thanks for your reply,
No, that would not be enough because of the following reasons:
- Blocking a whole date is too much, it is about timeframes*
- When appointment is made over phone and put directly into Google Calendar
- When appointment is rescheduled in Google Calendar
So basically Google Calendar is leading.
*Example: When there is already an appointment for: 9:00-11:30, you should only be able to choose 12:00-14:30 / 15:00-16:30
|
10 Mar 2021 11:05
|
andreic
|
Hello,
Would simply blocking the dates in your form not be enough, since the dates are blocked you will not be able to schedule a second appointment on the same date? This implies that you will only accept appointments through your form.
|
09 Mar 2021 14:23
|
info5345
|
Right now the Google Calendar plugin is there to submit data from the form to Google.
For a new website I need to create a booking/appointment tool, currently RSformsPRO can do this for 95%, the only thing missing, is to block times that are already "booked" in Google Calendar.
Looking at the Google API, this should be possible.
So, any chance of adding the functionality to GET data from Google Calendar and not only POST? Or is there a workaround?
|
08 Feb 2021 14:28
|
dragos
|
Hello,
RSJoomla! is releasing its products only in English language, the rest of the language files are donated by the community and might not be complete. You can try creating / completing your own language pack by referring to this article.
|
08 Feb 2021 11:48
|
web42
|
Hi.
I would like the calendar to appear in Greek (or another language) other than English.
I have uploaded the language files normally and all are set to Greek lang. Nevertheless, the calendar is still displayed in English.
I have read everything about it in the forum but whatever I tried I did not succeed.
What can I do to achieve this?
Thanks.
George
|
|