Sunday, 17 June 2018
  29 Replies
  1.4K Visits
0
Votes
Undo
Hi all, using the RSVP Pro and it's almost perfect.
However I need to remove the registration period and not have it as an option when creating events.
How can I achieve this?
Thanks :)
6 years ago
·
#204626
Accepted Answer
0
Votes
Undo
Sure so:


#jevents #jevrsvpattend {display:none;}


To your frontend Template Custom CSS should do it for you.

Many thanks
Tony

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!Join the JEvents club today!

6 years ago
·
#203155
0
Votes
Undo
Hello,

At present you need a registration period for events. You can set it really far in the past and future to not really be applicable.

Many thanks
Tony

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!Join the JEvents club today!

6 years ago
·
#203201
0
Votes
Undo
The problem is people have to set it when creating events.
What I am trying to create is this:
The site is an archive of past events, people log in and add theirs.
Once the event is listed people need to be able to click 'I attended' button that adds them to the list of people who were there.
So, it's all very very close to being perfect, is there a way for me to make the date range huge and hide the fields when creating an event?
Thanks :)
6 years ago
·
#203241
0
Votes
Undo
Hi Jimbobber,

Do you want to provide me with super users logins and I'll write a small bit of JS you can insert to your template to set a huge date range automatically.

Many thanks
Tony

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!Join the JEvents club today!

6 years ago
·
#203261
0
Votes
Undo
That sounds great as we will never need to have registrations for upcoming events etc, so a hard coded solution works well
6 years ago
·
#203413
0
Votes
Undo
Hi there, have we got any news about this? It sounded like an amazing solution :)
6 years ago
·
#203433
0
Votes
Undo
Sorry for the delay. all done for you on your site with this code:


<script>
jQuery( document ).ready(function() {
evid = jQuery('input#evid').val();
if (evid == 0) {

jQuery('input#custom_rsvp_regopen').val('01/01/2014');
jQuery('input#regopen').val('01/01/2014');
jQuery('input#regopen').attr('data-alt-value', '01/01/2014');
jQuery('input#regopen').attr('data-local-value', '01/01/2014');
checkRegDates('regopentime');

jQuery('input#custom_rsvp_regclose').val('01/01/2030');
jQuery('input#regclose').val('01/01/2030');
jQuery('input#regclose').attr('data-alt-value', '01/01/2030');
jQuery('input#regclose').attr('data-local-value', '01/01/2030');
checkRegDates('regclosetime');
}
});
</script>


Added into your JEvents Event Edit Custom Layout.

Many thanks
Tony

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!Join the JEvents club today!

6 years ago
·
#203439
0
Votes
Undo
Thank you!
I see it working and I love it, I have created a test event and it doesn't seem to appear, this is so close to being perfect and am really appreciative of your help so far.
I have posted the event I created in a secure link, could you check it out?
Again, thanks so much!
6 years ago
·
#203514
0
Votes
Undo
Hello,

Was this a copy / edit test event?

I just created a test 2 event and it works fine? IT will only set the date for new events, if you want it to always change the date remove;


if (evid == 0) {


then


}

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!Join the JEvents club today!

6 years ago
·
#203800
0
Votes
Undo
Hi, sorry for the delay.
I am looking at the site now and for example this was created by someone:
http://address-gigs/eventdetail/114/-/test

But the attend button is not there, it's puzzling!
Any help much appreciated :)
6 years ago
·
#203848
0
Votes
Undo
I have edited the code as said to:


<script>
jQuery( document ).ready(function() {
evid = jQuery('input#evid').val();

jQuery('input#custom_rsvp_regopen').val('01/01/2014');
jQuery('input#regopen').val('01/01/2014');
jQuery('input#regopen').attr('data-alt-value', '01/01/2014');
jQuery('input#regopen').attr('data-local-value', '01/01/2014');
checkRegDates('regopentime');

jQuery('input#custom_rsvp_regclose').val('01/01/2030');
jQuery('input#regclose').val('01/01/2030');
jQuery('input#regclose').attr('data-alt-value', '01/01/2030');
jQuery('input#regclose').attr('data-local-value', '01/01/2030');
checkRegDates('regclosetime');
});
</script>


Someone just made an event, it's not appearing, puzzling!
Any help much appreciated :)
6 years ago
·
#203956
0
Votes
Undo
Hello,

Did you get it to appear? Who created the event?

the above code wouldn't stop an event appearing as it's just handling the registration period.

Many thanks
Tony

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!Join the JEvents club today!

6 years ago
·
#204023
0
Votes
Undo
Hi there, the events appear, but the button to add yourself as an attendee doesn't, it's very nearly perfect apart from this :)
6 years ago
·
#204052
0
Votes
Undo
Do you have the logins for a user who is creating the event where the button doesn't occur?

http://www.wotgigs.com/dev/index.php?option=com_jevents&task=icalrepeat.detail&evid=118&Itemid=1070&year=2018&month=06&day=26&title=test&uid=66e10f3da420b39e2ae191b582a27926

Works here?

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!Join the JEvents club today!

6 years ago
·
#204068
0
Votes
Undo
This event:
http://www.address.com/dev/address-gigs/eventdetail/111/-/james-test

Was made by username James - I have put the info in private to log in :)
6 years ago
·
#204085
0
Votes
Undo
Hehe! That's because that user is not authorised to create registration sessions ;-), so no registration options are shown when creating an event.

Many thanks
Tony

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!Join the JEvents club today!

6 years ago
·
#204306
0
Votes
Undo
Ah right :)
OK, so if it's OK I should really explain what I need again because I think I may have been unclear.

What we have now is so close to perfect, this is what I need:

People upload events as normal
Then, when the even is online the attendee button is automatically shown to everyone, ideally like in the image attached.

When they click 'Yes I was there' then they either have to log in, or if they are logged in they go on the attendee list for that event.

I hope that makes sense, it is a simplified version of what we have, basically, the Yes I attended button is always there and when clicked you are added to a list of people who went.

Thanks :)
6 years ago
·
#204310
0
Votes
Undo
So you just need to enable them to create registration forms within RSVP Pro, this will show the attendance options to them when creating the event and the date range will be auto set.

Many thanks
Tony

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!Join the JEvents club today!

6 years ago
·
#204353
0
Votes
Undo
Where is that setting, I am looking at the config page and not seeing it :(
6 years ago
·
#204355
0
Votes
Undo
JEvents RSVP Pro -> Configuration -> Permissions

find their user group and set: Create registration forms

to yes.

Many thanks
Tony

JEvents Club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits. Join the JEvents club today!Join the JEvents club today!

6 years ago
·
#204463
0
Votes
Undo
I have done that now thanks :)
I have taken a random event from the site made by a normal registered user and posted it in private for you to look at, the button doesn't appear, can you help?
Thanks again
  • Page :
  • 1
  • 2
There are no replies made for this post yet.

Members Area

Show your support

Unlike many Joomla calendars we do not charge to download JEvents - please show your support for this project by becoming a member of the JEvents Club Club members get access to early releases, exclusive member support forums, and Silver and Gold members can use many exciting JEvents addons

Your membership will ensure that JEvents continues to be the best events calendar for Joomla.