By Marcus Roskill on Monday, 19 November 2018
Posted in General
Replies 17
Likes 0
Views 524
Votes 0
Hi guys

Is there a way to turn off the RSVP option on events and just have them as an open event?

Thanks
Katie
Hi there,

You can do modification at this path .../components/com_easysocial/themes/wireframe/helpers/event/action.php on codes and see how it goes.

[gist type="php"]

//You can remove them accordingly

//when users are invited and awaiting their respond
<?php } else if ($isInvited) { ?>
<?php echo JText::_('COM_EASYSOCIAL_EVENTS_RSVP'); ?>
<?php } ?>
<?php } else { ?>
<?php echo JText::_('COM_EASYSOCIAL_EVENTS_GUEST_GOING'); ?>
<?php } ?>

//Past events
<?php } else { ?>
<?php echo JText::_('COM_EASYSOCIAL_EVENTS_GUEST_GOING'); ?>
<?php } ?>

[/gist]

Do make template override for them as you can refer here https://stackideas.com/docs/easysocial/administrators/templating/template-overrides *in case you using different template, you still need to edit them on wireframe template

Please give it a try and see how it goes.
·
Monday, 19 November 2018 17:54
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Warith

Why does my override area only show about 4 files I am able to customise?

Thanks
Katie
·
Monday, 19 November 2018 21:10
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

As mentioned on my previous reply, you will need to edit them on wireframes themes instead as those files are used on other themes. Please give it a check and see how it goes.
·
Tuesday, 20 November 2018 09:29
·
0 Likes
·
0 Votes
·
0 Comments
·
I tried, it broke the site. I just want to remove all the buttons to do with attending not attending and RSPV.

Thanks
Katie
·
Tuesday, 20 November 2018 16:42
·
0 Likes
·
0 Votes
·
0 Comments
·
I've help you put this following custom css under your site backend > Easysocial > theme > custom css , so it will hide this button on the site.


body #es [data-es-events-rsvp] {
display: none;
}


You have to clear your browser cache before you test it, it might be cached your site old CSS stylesheet on the browser.
·
Tuesday, 20 November 2018 21:13
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you,

How do I remove the attendees too?

Thanks
Katie
·
Tuesday, 20 November 2018 23:19
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Applied some fixes here templates/protostar/html/com_easysocial/events/default/item.php Please give it a check and see how it goes.
·
Wednesday, 21 November 2018 10:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi

Its still showing attendee count.
·
Wednesday, 21 November 2018 17:19
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

It seems that those attendees are not there currently as you can see here http://take.ms/OfkWG on my end. Can you try to clear your browser and site cache first and see how it goes.
·
Wednesday, 21 November 2018 17:22
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Warith,

I mean on the news feed, see attached.
·
Wednesday, 21 November 2018 21:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Applied some fixes here ../templates/protostar/html/com_easysocial/helpers/widget/events.php. Should i reverted my changes on previous replies?

Please advice.
·
Thursday, 22 November 2018 10:01
·
0 Likes
·
0 Votes
·
0 Comments
·
None of these changes are going to get overridden on updates are they?

Thanks
Katie
·
Thursday, 22 November 2018 16:57
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Yes it wont as those fixes are applied on template override.
·
Thursday, 22 November 2018 17:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi

Can we turn off the attendee count on events please and who is attending as we're not using the attending feature. They're open events.

Thanks
Katie
·
Thursday, 13 December 2018 17:02
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,


For attendees on Events information, you can applied attached file below at this path templates/protostar/html/com_easysocial/events/item/default.php and see how it goes.

For attendees, you can disabled them here http://take.ms/Z8Gwt.
·
Thursday, 13 December 2018 17:13
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post