Advanced Search

Search by Keyword
Search by User Name
   

Search Options

Find Posts from
Sort Results by
Jump to Result Number
Search in Categories

Search Results

Searched for: calendar
16 Sep 2015 21:04

will63

Is there an easier way to add the currently selected month and year to the calendar view than the following method?
<?php $cmonthName = date('F', mktime(0, 0, 0, $this->calendar->cmonth));?>
<?php echo $cmonthName; ?>
<?php echo $this->calendar->cyear; ?>

I mainly wanted it visible for printing to make the calendar look more publisher-ish on paper.
Category: RSEvents!Pro
28 Aug 2015 17:09

sam.samiei

Hi Josh,
im looking to add the form submission to Google calnder and was wondering if you could share the script as the link mentioned above is not live,

thanks.
Sam
Category: RSForm! Pro
26 Aug 2015 21:39

vivitoyenlamosquitia

Hello,
You can see in the url I want to do.
I inserted the following code in Javascript:

<script>
function rsfp_onSelectDate(date, type, args, calendar)
{
var valor="<?php require('http://*********/horario.php');?>";
document.getElementById('Horario').innerHTML=valor;
}
</script>

But I returned this Clicking on a date:

<select name="form[Horario][]" id="Horario" class="rsform-select-box"><!--?php require('http://******/horario.php');?-->
</select>

Ie tells me the contents of php , what it is due ? How do I have to do ?
Category: RSForm! Pro
14 Aug 2015 12:24

octavian

No, there's only one solution - update RSEvents! Pro as well as the modules.
Category: RSEvents!Pro
13 Aug 2015 22:29

studiolarga

I Have a same problem with no tab for Menu Item assignment.
Is there now any solution?

Thanks.
Category: RSEvents!Pro
07 Aug 2015 12:13

adrianp

Hello,

You can use the previous script along with a CSS approach on this:
.wd0{
  pointer-events: none !important;
  cursor: default !important;
}
.wd0 a:link{
  color:grey !important;
}
Category: RSForm! Pro
06 Aug 2015 14:54

sam.samiei

Thanks for your reply.
i was wondering is it possible to make the Sundays not selectable? right now they can click on it and it shows them a message saying we are closed on Sunday. i would prefer disable the day rather than showing them a message on pop ups.

Sam
Category: RSForm! Pro
06 Aug 2015 13:38

adrianp

Hello,

Your code checks for two days of the week (7 actually doesn't exist as the counting starts from 0).

Replace:
if (d.getDay() == 0 || d.getDay() == 7) {

With:
if (d.getDay() == 0) {
Category: RSForm! Pro
05 Aug 2015 21:23

sam.samiei

Hi,
How can i disable selection Sundays in calendar?

is the code below correct?

<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() == 7) {
alert('Please note that we are closed on Sundays');
return false;
} else {
return true;
}
}
</script>

thanks
Category: RSForm! Pro
01 Aug 2015 18:58

ankitcool90

How to add Popup image instead of Popup calendar in RSForm Pro!!

Go to ...\administrator\components\com_rsform\helpers\rsform.php

Make changes in line 3026

Replace the old code but make a copy of it in note pad just if you need to change it to normal again.


Replace it with the code present below --- (note: img src="images\calendar2.png" this is the code i entered before the input id for my image) you need to change it to your image path.)

$out .= '<img src="images\calendar2.png" input...
Category: RSForm! Pro
08 Jul 2015 08:10

duanelbryan

It would be great if it could feature 15 minute intervals also so a time sheet logging form can be created.

Is there any option of a time sheet logging form already created?

Thanks
Category: RSForm! Pro
06 Jul 2015 11:40

octavian

Happy to let you know that we're working on a new version of RSForm! Pro that contains this exact calendar :)
Category: RSForm! Pro
04 Jul 2015 02:34

jcdonis

Any way you guys could implement a time element to the existing calendar form field? More or less like what Fox Contact has on their calendar field? See screenshot.



This would be very beneficial for a simple contact form for appointment requests.

Thanks!
Category: RSForm! Pro
30 Jun 2015 07:48

cosmin.cristea

try changing the color with the following declaration

.rsepro-calendar .has-events ul a{
color:red
}

let me know if it works!
Category: RSEvents!Pro
29 Jun 2015 20:07

dickstanley

Any idea how to change the font colour in the Calender?
I guess it has to be done in the template CSS?

Bit of a novice at this so excuse the basic question

Cheers
Category: RSEvents!Pro
Displaying 286 - 300 out of 1055 results.