Version: 3.1, by Farcaster
Developer Last Online: Jun 2014
Category: Calendar Enhancements -
Version: 4.x.x
Rating:
Released: 01-31-2010
Last Update: 08-08-2011
Installs: 417
DB Changes Uses Plugins Template Edits
No support by the author.
This modification will allow your members to RSVP to events on the vBulletin calendar. By default, members can respond "Yes," "No," or "Maybe," as to whether or not they will be able to attend an event, but you can modify or add to the list of responses members are presented with as you desire.
Features
Specify some or all of your calendars to use the RSVP system.
Set whether an event accepts RSVPs during event creation / edit.
Allow members to specify if they will be bringing a guest.
Event owners can set the maximum number of guests each member may bring.
Events can be set to close RSVPs on the day of the event or before.
RSVP comments (up to 65k character limit, configurable)
Timestamped RSVPs
Moderators and event owners can remove member RSVPs from events.
Attendance list can be set to display member avatars.
Improved handling of differing timezones and daylight saving times.
Configurable Response options. You aren't stuck with Yes, No, Maybe. You can setup whatever responses you want.
Ability to specify a maximum number of attendees for an event. After the maximum is reached, you can configure members to either receive an error or have their response (RSVP) automatically changed to something else. This could be used to create a wait-list bucket, for instance.
Requirements
vBulletin v4.0.0 or higher.
Installation Instructions
- 1 XML upload
- 1 template modification
1. Use the Product Manager to import the included product XML file.
2. Use the Style Manager to find and edit your calendar_showeventsbit:
Find:
HTML Code:
<div class="eventfoot">
Above that add:
HTML Code:
{vb:raw rsvp_form}
Upgrading from v2 (for vb3):
Follow the steps above for installing the new version, and be sure to ALLOW OVERWRITE when installing the new product file.
Revision History:
v3.0.0a (BETA) - Updated to work on vb4. Corrected a number of bugs related to determining correct occurrence date. Corrected event save bug.
Hi, thanks you for updating this mod.
I use vB4.1.5PL1
Actually i'v got two bugs :
When i go to calendar --> year.
I obtain an error :
Code:
Fatal error: Cannot redeclare array_prep() (previously declared in /home/parentso/www/forum/calendar.php(1381) : eval()'d code:1) in /home/parentso/www/forum/calendar.php(1381) : eval()'d code on line 5
Second :
When i want to answer to a Event :
- first time : click yes, i obtain this url : http://www.parent-solo.fr/forum/cale...93/&redirect=1
And error message : Page not found
If i come back (buton back) and try again the system works.
If i left the page and come back to the same event, the error appear again.
Any idea ?
Thanks you in advance.
Yeah, actually the avatar stuff in Farcaster's mod is more complicated than it needs to be.
Open your AdminCP, go to the Plugins Manager, and open up the GETDAY_EVENT: Add RSVPs and Form to Event plugin for Farcaster's Event Attendance v3
Find:
Code:
/*********************************************************************
* Get Users Avatar (If Used)
*********************************************************************/
if ($vbulletin->options['rah_rsvp_showavatar']) {
$avatarurl = "";
if (!empty($rsvp['avatarpath']))
{
$avatarurla = array($rsvp['avatarpath']);
}
else if ($rsvp['hascustom'])
{
$avatarurla = array('hascustom' => 1);
if ($vbulletin->options['usefileavatar'])
{
$avatarurla[] = $vbulletin->options['avatarurl'] . "/avatar{$rsvp['userid']}_{$rsvp['avatarrevision']}.gif";
}
else
{
$avatarurla[] = "image.php?u=".$rsvp['userid']."&dateline=".$rsvp['dateline'];
}
}
if ($avatarurla) {
$avatarurl = $vbulletin->options['bburl'] . '/' . $avatarurla[0];
$showavatar=true;
} else {
$showavatar=false;
}
unset($avatarurla);
} // END AVATAR
Replace with:
Code:
/*********************************************************************
* Get Users Avatar (If Used)
*********************************************************************/
if ($vbulletin->options['rah_rsvp_showavatar']) {
if (!empty($rsvp['avatarpath']) || $rsvp['hascustom'])
{
$avatarurla = fetch_avatar_url($rsvp['userid'], true); //Change the true to false to get regular sized avatars
$avatarurl = $avatarurla[0];
unset($avatarurla);
$showavatar=true;
}
} // END AVATAR
Is this still the best way to adjust the size of the avatar? I was hoping to just use the default xs size (or the prepared avatar, not 100% sure what it's called but the one that shows up under friends list in profile) but I don't know how I would do that.
Could someone please tell me how I can change the color of the text
Quote:
Will you be able to attend on 14th February 2012?
You may change your RSVP status at any time on or before 14th February 2012 10:30 AM.
Yes Maybe No
Comment:
(Max Length = 255)
Mine is currently gray on a gray background I went through some templates and found where it set the text format with [/b] etc but I cannot figure out how to change the color.