Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Farcaster's Event Attendance v3 (for vb4) Details »»
Farcaster's Event Attendance v3 (for vb4)
Version: 3.1, by Farcaster Farcaster is offline
Developer Last Online: Jun 2014 Show Printable Version Email this Page

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.
  • v3.0.0b (BETA) - Resolved What's New - Events crashes bug, added workaround for Avatar Alignments Off, added code to support integration with BBR - vB Event Forums (will not work with v1.0).
  • v3.1 - Fixed comment bug that caused {rsvp:var rsvp.comment} to be displayed instead of actual comment.
  • v3.1 - Resolved problematic array_walk usage that seemed to be causing trouble for some users on vb4.1.3+.
  • v3.1 - Special characters not displayed correctly in comments.
  • v3.1 - "Will you be able to attend on %1$s?"
Known Bugs:
Avatar Alignments Off
Phrase / Formatted Date Problem (unable to reproduce)
What's New - Events crashes

Download Now

File Type: xml product-rah_calendar_rsvp_3_1.xml (52.1 KB, 808 views)

Screenshots

File Type: png farcasters_event_attendance__event.PNG (46.0 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
3 благодарности(ей) от:
scotfor, Sir_Rai, Toorak Times

Comments
  #222  
Old 01-20-2011, 02:47 PM
DemoniK_AK DemoniK_AK is offline
 
Join Date: Sep 2010
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've been struggling for a while with this MOD but wanted it so much.
Finally got some time.


I took OlijO xml file and fixed the following and confirmed it working on 4.1.0pl2

Line 105: rsvp:var rsvp.comment problem
- changed to vb:var rsvp.comment
Previous
Code:
	<vb:if condition="$rsvp[comment] AND $maxlength"> - <i>{rsvp:var rsvp.comment}</i></vb:if></li>
New
Code:
	<vb:if condition="$rsvp[comment] AND $maxlength"> - <i>{vb:var rsvp.comment}</i></vb:if></li>
Line 359: array_lower() problem
- modified the check to ensure array_lower gets created
Previous
Code:
	// define functions for array_walk, if not already defined.
	if (!function_exists('array_trim') and !function_exists('array_trim')) {

		function array_trim(&$item, $key)
		{
		    $item = trim($item);
		}

		function array_lower(&$item, $key)
		{
		    $item = strtolower($item);
		}
			
	}
New
Code:
	// define functions for array_walk, if not already defined.
	if (!function_exists('array_trim') and !function_exists('array_trim')) {

		function array_trim(&$item, $key)
		{
		    $item = trim($item);
		}
	}
	if (!function_exists('array_lower') and !function_exists('array_lower')) {
		function array_lower(&$item, $key)
		{
		    $item = strtolower($item);
		}
			
	}
Modified File is attached.
Hope it helps some of you out.
Attached Files
File Type: xml Farcaster-product-updated.xml (52.5 KB, 41 views)
Reply With Quote
  #223  
Old 01-20-2011, 10:28 PM
jgt58 jgt58 is offline
 
Join Date: May 2010
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

works perfect now!
Reply With Quote
  #224  
Old 01-21-2011, 08:48 AM
sweetpotato sweetpotato is offline
 
Join Date: Oct 2010
Posts: 239
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Not work for me, so sorry because I like this Mod so much,
Reply With Quote
  #225  
Old 01-21-2011, 04:28 PM
DemoniK_AK DemoniK_AK is offline
 
Join Date: Sep 2010
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sweetpotato View Post
Not work for me, so sorry because I like this Mod so much,
What issue are you seeing?
I have a little spare time at the moment - if you want to PM me an account on your site I could check it out and see if there's anything I can do..
Can't promise anything - but if it's a quick fix we might get it sorted.

EDIT: Just to be clear - a user account with event creation, subscription and response permissions is what I need - not admin. I'll get you to screenshot anything I need from admin.
Reply With Quote
  #226  
Old 01-22-2011, 08:44 AM
sweetpotato sweetpotato is offline
 
Join Date: Oct 2010
Posts: 239
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DemoniK_AK View Post
What issue are you seeing?
I have a little spare time at the moment - if you want to PM me an account on your site I could check it out and see if there's anything I can do..
Can't promise anything - but if it's a quick fix we might get it sorted.

EDIT: Just to be clear - a user account with event creation, subscription and response permissions is what I need - not admin. I'll get you to screenshot anything I need from admin.
Thank you for your help. It seems to work on my site now. At first when add RSVP and submit it turned blank page and now when I create a test account it works.

I love this Mod so much because events are so important for my site.

Thank you for what you and other friends have provided for my site.

Notice: The super admin can not respond to RSVP, it turn blank page. Other members can respond successfully
Reply With Quote
  #227  
Old 01-22-2011, 03:57 PM
stud stud is offline
 
Join Date: May 2004
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DemoniK_AK View Post
Modified File is attached.
Hope it helps some of you out.
Thanks DemoniK! That fixed my {rsvp:var rsvp.comment} error.
I was also having the "Invalid" issue - which removing SMnet's vB Event Forums improvements fixed
Reply With Quote
  #228  
Old 02-02-2011, 05:39 AM
swat73david swat73david is offline
 
Join Date: Dec 2006
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DemoniK_AK View Post
I've been struggling for a while with this MOD but wanted it so much.
Finally got some time.


I took OlijO xml file and fixed the following and confirmed it working on 4.1.0pl2

Line 105: rsvp:var rsvp.comment problem
- changed to vb:var rsvp.comment
Previous
Code:
	<vb:if condition="$rsvp[comment] AND $maxlength"> - <i>{rsvp:var rsvp.comment}</i></vb:if></li>
New
Code:
	<vb:if condition="$rsvp[comment] AND $maxlength"> - <i>{vb:var rsvp.comment}</i></vb:if></li>
Line 359: array_lower() problem
- modified the check to ensure array_lower gets created
Previous
Code:
	// define functions for array_walk, if not already defined.
	if (!function_exists('array_trim') and !function_exists('array_trim')) {

		function array_trim(&$item, $key)
		{
		    $item = trim($item);
		}

		function array_lower(&$item, $key)
		{
		    $item = strtolower($item);
		}
			
	}
New
Code:
	// define functions for array_walk, if not already defined.
	if (!function_exists('array_trim') and !function_exists('array_trim')) {

		function array_trim(&$item, $key)
		{
		    $item = trim($item);
		}
	}
	if (!function_exists('array_lower') and !function_exists('array_lower')) {
		function array_lower(&$item, $key)
		{
		    $item = strtolower($item);
		}
			
	}
Modified File is attached.
Hope it helps some of you out.
This has fixed my comment issue. Thank You
Reply With Quote
  #229  
Old 02-02-2011, 02:21 PM
Wood 20th* Wood 20th* is offline
 
Join Date: Mar 2010
Location: Canada
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for this..

But does anyone know how I would add an attachment feature to the add event editor when creating an event.
The only features it currently has for the calender are

Allow HTML
Allow BB Code
Allow [IMG] Code
Allow Smilies

I would like to add an attachment say maybe zip file so people who RSVP to the event can download the attachment prior to the event.
Reply With Quote
  #230  
Old 02-07-2011, 02:43 PM
hiker's Avatar
hiker hiker is offline
 
Join Date: Sep 2009
Posts: 221
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DemoniK_AK View Post
Modified File is attached.
Hope it helps some of you out.
This works for me. Thanks.
Reply With Quote
  #231  
Old 02-07-2011, 11:22 PM
Wood 20th* Wood 20th* is offline
 
Join Date: Mar 2010
Location: Canada
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Wood 20th* View Post
Thanks for this..

But does anyone know how I would add an attachment feature to the add event editor when creating an event.
The only features it currently has for the calender are

Allow HTML
Allow BB Code
Allow [IMG] Code
Allow Smilies

I would like to add an attachment say maybe zip file so people who RSVP to the event can download the attachment prior to the event.

I guess not.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:58 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05285 seconds
  • Memory Usage 2,367KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (8)bbcode_code
  • (2)bbcode_html
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (3)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (3)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete