By jimbobber on Sunday, 17 June 2018
Replies 29
Likes 0
Views 1.5K
Votes 0
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
Sure so:


#jevents #jevrsvpattend {display:none;}


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

Many thanks
Tony
·
Tuesday, 31 July 2018 14:16
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Sunday, 17 June 2018 23:27
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Monday, 18 June 2018 15:36
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Wednesday, 20 June 2018 08:14
·
0 Likes
·
0 Votes
·
0 Comments
·
That sounds great as we will never need to have registrations for upcoming events etc, so a hard coded solution works well
·
Wednesday, 20 June 2018 15:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there, have we got any news about this? It sounded like an amazing solution
·
Tuesday, 26 June 2018 12:25
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Tuesday, 26 June 2018 15:08
·
0 Likes
·
0 Votes
·
0 Comments
·
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!
·
Tuesday, 26 June 2018 17:28
·
0 Likes
·
0 Votes
·
0 Comments
·
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


}
·
Wednesday, 27 June 2018 21:04
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Wednesday, 04 July 2018 12:39
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Thursday, 05 July 2018 17:08
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Monday, 09 July 2018 21:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there, the events appear, but the button to add yourself as an attendee doesn't, it's very nearly perfect apart from this
·
Tuesday, 10 July 2018 16:20
·
0 Likes
·
0 Votes
·
0 Comments
·
·
Wednesday, 11 July 2018 21:48
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Thursday, 12 July 2018 13:14
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Thursday, 12 July 2018 20:25
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Tuesday, 17 July 2018 18:07
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Tuesday, 17 July 2018 22:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Where is that setting, I am looking at the config page and not seeing it
·
Thursday, 19 July 2018 13:28
·
0 Likes
·
0 Votes
·
0 Comments
·
JEvents RSVP Pro -> Configuration -> Permissions

find their user group and set: Create registration forms

to yes.

Many thanks
Tony
·
Thursday, 19 July 2018 13:38
·
0 Likes
·
0 Votes
·
0 Comments
·
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
·
Wednesday, 25 July 2018 19:02
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post