Quote:
Originally Posted by Boristheblade
Just installed this mod on a 4.1.2 VB forum and everything works great except one thing.
When a member makes a comment with their rsvp this takes the place of their comment.
{rsvp:var rsvp.comment}
Anyway to fix this?
|
Open your style, open up your templates, and find your Calendar Templates. Find the "
calendar_rsvp_bit" template and edit it.
At the bottom, replace:
Code:
{rsvp:var rsvp.comment}
With:
Code:
{vb:var rsvp.comment}
Quote:
Originally Posted by mmackinnon
Hey
When i put an event in i get this:
Will you be able to attend on %1$s?
Any ideas?
|
Open your style, open up your templates, and find your Calendar Templates. Find the "
calendar_rsvp_form" template and edit it.
Find:
Code:
<b>{vb:phrase calendar_rsvp_attendquestion {vb:var rsvp_day_formatted}}</b><br />
Replace with:
Code:
<b>{vb:phrase calendar_rsvp_attendquestion, {vb:var rsvp_day_formatted}}</b><br />
^For those of you that don't see it, there's a missing comma.
Now find:
Code:
<b><phrase 1="$rsvp_day_formatted">{vb:phrase calendar_rsvp_attendquestion}</b><br />
Replace with:
Code:
<b>{vb:phrase calendar_rsvp_attendquestion, {vb:var rsvp_day_formatted}}</b><br />
Last but not least, find:
Code:
<font class="smallfont"><i>${vb:phrase calendar_rsvp_maychange}</i>
Replace with:
Code:
<font class="smallfont"><i>{vb:phrase calendar_rsvp_maychange}</i>
^Gets rid of the $ symbol that shows up in front of the "You may change your RSVP status at any time." whenever someone RSVPs to an event.