
04-01-2011, 03:46 PM
|
|
|
Join Date: Jun 2006
Posts: 84
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
THANKS!
Totally fixed it!
Quote:
Originally Posted by TigerC10
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}
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.
|
|