Skip to main content

Activity

commented on event_rsvp
I would like to show a list of RSVPed WITH a guest count next to each name
ex-
Peyton Manning +1
Tim Tebow
Tom Brady +3

I have tried using the guest_count tag from the documentation above and am getting nowhere.
This seems like it should be pretty easy, but I am missing something.
Any advice?
posted 2016-03-10 09:50:31 -0800
commented on page.suggestion_box
Can the photo uploaded into the suggestion box be shown in the stream at the bottom of the page along with the submitted suggestion’s byline & content?
posted 2016-02-01 13:06:42 -0800
commented on event_host
Is there a way to request if the current user is the host of an event?
I have tried {% if request.current_user.is_event.hosts? %} and a few assorted variations on that.

I would like a link to appear if the user is the host(s)
posted 2016-01-11 12:46:47 -0800
tagged Ryan Liu's How to change google map zoom level? with Helpful
posted 2015-08-05 11:18:07 -0700
tagged Greg Walz Chojnacki's RSVPs in email blasts? with Helpful
posted 2015-08-03 14:19:44 -0700
commented on page.event
Thank you so much Kevin for your help!
In case anybody would like to limit RSVPs by page tags and/or people tags.
-—-
{% assign tags_list = "" }
{
for tag in page.tags }
{
assign tags_list = tag.name | append: ", " | append: tags_list }
{
endfor %}

{% if tags_list contains ‘Private’ %} {% if tags_list contains ‘thePLAYgroups’ %} {% if request.current_signup.tags contains “PLAYgroups” %} {% include ‘rsvp_ticket_block’ %} {% else %}

<p>For RSVP access join thePLAYgroups <a href=“thePLAYgroups_signup”>here.</a></p>
{% endif }
{
else }
{
endif %} {% if tags_list contains ‘MOMpreneurs’ %} {% if request.current_signup.tags contains “MOMpreneur” %} {% include ‘rsvp_ticket_block’ %} {% else %}

<p>For RSVP access join theMOMpreneurs <a href=“theMOMpreneurs_signup”>here.</a></p>
{% endif }
{
endif %}

{% else }
{
include ‘rsvp_ticket_block’ %}

{% endif %}
posted 2015-09-03 13:00:08 -0700