• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Disable Frontend list of attendees to registered..

Disable Frontend list of attendees to registered.. 4 years 8 months ago #39293

  • tdilkie
  • tdilkie's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
I have an RSVP event, but I only want to show the list of "Going"/'Not Going"/"Interested" to logged in users, NOT to the Public group.

Is there a setting? I can't find it.

Thanks,
-Trent
The administrator has disabled public write access.

Disable Frontend list of attendees to registered.. 4 years 8 months ago #39301

  • adrianp
  • adrianp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 631
  • Thank you received: 146
Hello,

Even if your Public group sees these options, the event RSVP options can only be used by logged-in users. If hiding these is a must, you can take similar steps:

- perform a template override.

- the file in question for template overrides is located under this path (I would recommend using a proper editor like Notepad++):

\components\com_rseventspro\views\rseventspro\tmpl\show.php

- open the duplicate used for template overrides and, after the following (line 229):
<!--//end Invite/Join/Unsubscribe -->

- add:
<?php $loggedUser = JFactory::getUser(); ?>
<?php if ($loggedUser->id > 0) { ?>

- scroll further down (around line 252) where you'll find 4 lines like the following one after another (you'll need to add one more so you'll have 5 instead):
<?php } ?>
<?php } ?>
<?php } ?>
<?php } ?>
This is not official customer support. To receive your support, submit a support ticket here.
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!