vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Event Attendance 2.0 (https://vborg.vbsupport.ru/showthread.php?t=93782)

mhuckaby 01-24-2006 09:23 PM

Ok, I just figured it out. You cannot create an event that occurs on the day you create it. This plug-in I guess assumes that it's too late for people to sign-up. I created a new event at a future date and it works!

Thanks

:Judge: 01-26-2006 01:47 AM

Quote:

Originally Posted by magnus
Simple. I've done this on my forum.

AdminCP -> Plugin System -> Plugin Manager

Find "Event Attendance - add enroll to create form" and click [Edit]

Replace with:
Code:

if (($type!='recur') OR (($type=='recur') AND ($vbulletin->options['enroll_reoccur']))) {

$disablesmiliesoption.='<div><label for="cb_rollcall"><input type="checkbox" name="useroll" value="1" id="cb_roll" tabindex="3" '.$useroll.'  checked />'.$vbphrase['roll_allowenroll'].'</label></div>';

}

This will default to checked.

Thank You much :)

benzz0 01-27-2006 01:51 PM

very nice...Thanks!

Vtec44 01-28-2006 04:36 AM

Is it possible to allow Mod/Admins to remove people out from the list? :)

Gizmo999 02-01-2006 02:56 PM

I've applied James hack below but I can't now edit an event, clicking the edit button submits me as attending member :(

I'm working round it by running a testing template without the calendar roll template submit form hack, is there any other way of doing it??


Quote:

Originally Posted by James Goddard
I had PM'd arpy asking him to include this with the module but he seems to be AWOL.

Here is how you can add guests to this hack after it is installed:

calendar_roll template:

Find
PHP Code:

<else />
[<
a href="calendar.php?$session[sessionurl]do=getinfo&amp;ea=attend&amp;e=$eventinfo[eventid]">$vbphrase[roll_enroll]</a>]
</if> 

Replace with
PHP Code:

<else /> 
<
form action="calendar.php" method="post"
<
input type="hidden" name="do" value="getinfo" /> 
<
input type="hidden" name="ea" value="attend" /> 
<
input type="hidden" name="e" value="$eventinfo[eventid]/> 
[
I will be attending this event with <input type="text" name="guests" value="0" size=/> guests. <input type="submit" value="Submit" />] 
</
form
</if> 

Event Attendance - show/enroll plugin:

Find
PHP Code:

$roll[$vbulletin->userinfo['userid']] = $vbulletin->userinfo['username']; 

Replace with
PHP Code:

$info $vbulletin->userinfo['username']; 
$guests intval$_REQUEST['guests']); 
if (
== $guests
$info .= ' (' $guests ' guest)'
else if (
$guests 0
$info .= ' (' $guests ' guests)'
$roll[$vbulletin->userinfo['userid']] = $info



:Judge: 02-03-2006 07:34 AM

Quote:

Originally Posted by Gizmo999
I've applied James hack below but I can't now edit an event, clicking the edit button submits me as attending member :(

I'm working round it by running a testing template without the calendar roll template submit form hack, is there any other way of doing it??

I am also in the same boat as you, I cannot delete, move or edit. When I click "Go" nothing happens.

finn snor 02-15-2006 08:05 PM

I love this,

Is there a way to show a list of events a user has enrolled on the users profile ?

MythoLogy 02-15-2006 08:54 PM

*click installs - perfect for creating activity and building reputation for guild prizes, etc.

htscpl 02-18-2006 10:34 AM

Maybe I missed a fix but I keep getting an error message when I try to upload the xml file
Quote:

XML Error: xml processing instruction not at start of external entity at Line 1
Any idea on what I need to do to fix this?

Thanks for you help.

Henry :D

bada_bing 02-23-2006 04:18 PM

Will there be an update for vb 3.5.3 for this great hack?

finn snor 02-23-2006 06:32 PM

Quote:

Originally Posted by bada_bing
Will there be an update for vb 3.5.3 for this great hack?

I got it working on 3.5.3. It didnt work at first but after a reboot or something it started to work.

However i am on 3.5.4 now and it aint working on that.

Andreas 02-23-2006 11:59 PM

What exactly does not work on 3.5.4?

finn snor 02-24-2006 07:05 AM

Quote:

Originally Posted by Andreas
What exactly does not work on 3.5.4?

I installed it on a fresh 3.5.4 and nothing happens.

nothing happened on the old 3.5.3 either but after i accedential hit a revert or generel reset menu it worked on 3.5.3.
Perhaps i need to find that reset thing again.

Any suggestions ?

finn snor 02-24-2006 01:28 PM

Quote:

Originally Posted by finn snor
I installed it on a fresh 3.5.4 and nothing happens.

nothing happened on the old 3.5.3 either but after i accedential hit a revert or generel reset menu it worked on 3.5.3.
Perhaps i need to find that reset thing again.

Any suggestions ?

It works now after i reverted the calendar template :nervous:

Joey805 02-28-2006 04:20 AM

Just upgraded to 3.54 and this no longer works.

The users no longer have the link to attend or unattend themselfs when viewing an event and I have two templates that show as uncached now when I view a calendar event that I have allowed users to specify if they are attending.

Uncached templates: calendar_roll (1)
Uncached templates: calendar_rollbit (2)


When I turn the plugin off, the uncached templates notices no longer appear.

Can anyone help?

afkae 02-28-2006 11:34 AM

I was wondering if there is a way that only certain user groups can set the event but anyone from registered user up can enroll in the event?

finn snor 02-28-2006 11:37 AM

Quote:

Originally Posted by Joey805
Just upgraded to 3.54 and this no longer works.

The users no longer have the link to attend or unattend themselfs when viewing an event and I have two templates that show as uncached now when I view a calendar event that I have allowed users to specify if they are attending.

Uncached templates: calendar_roll (1)
Uncached templates: calendar_rollbit (2)


When I turn the plugin off, the uncached templates notices no longer appear.

Can anyone help?

Try reverting the calendar template - ithat worked for me.

Joey805 02-28-2006 08:36 PM

I tried reverting the calendar template and it did not fix the problem.

What should I try next?

Joey805 02-28-2006 09:29 PM

I have even gone as far as installing this on a fresh unmodified template/style. This still does not work.

Apparently something needs to be changed in order to get this working with 3.54.

Can any coders jump in on this? I would really like to continue to use this.

Thanks,

Joey

Joey805 03-02-2006 01:09 AM

Anyone???

Jayphen 03-02-2006 04:20 AM

Is there a way to link events to forums?

I run a dance party website, and we have different forums for each upcoming event. In that forum, users make threads about the party.

It would be awesome if at the top of the forum (on the thread list page), if the user could click "add me to this event", and then be added to the list.. as well as having a popup window there for them to see other users attending.

Is this beyond the scope of this plugin, or is it do-able?

Joey805 03-02-2006 04:26 AM

Has anyone got this successfully running on 3.54? I cant for the life of me. :(

yinyang 03-02-2006 06:03 AM

Quote:

Originally Posted by Jayphen
Is there a way to link events to forums?

I run a dance party website, and we have different forums for each upcoming event. In that forum, users make threads about the party.

It would be awesome if at the top of the forum (on the thread list page), if the user could click "add me to this event", and then be added to the list.. as well as having a popup window there for them to see other users attending.

Is this beyond the scope of this plugin, or is it do-able?

https://vborg.vbsupport.ru/showthrea...ht=event+forum

Neo_obs 03-03-2006 06:38 PM

I have gotten it to work on 3.5.4 works quite nice on a modified forum

kizzmet 03-03-2006 11:16 PM

Thank you for this, my users are very excited about it.

Jayphen 03-05-2006 10:52 AM

Quote:

Originally Posted by yinyang

That creates new threads for events, not new forums.

kommuni 03-11-2006 12:55 PM

unfortunately this doesn't seem to work together with the event-forum-plugin.

Probably anyone could make this possible?

ataraxia 03-13-2006 09:39 AM

This is a GREAT plugin!

QUESTION: Is there some way to make the "Allow users to specify that they will be attending this event." setting to default to "Yes"?

When adding events most people (including myself) seem to overlook or forget that setting entirely. The result is that few events ever offer the option to the general members.

Thanks

Mighty Mojo 03-16-2006 01:27 AM

How do I add VBulletin profile fields to the list of items shown?
I'm editing the rollbits with this info----but it isn't "parsing" the profile fields....

<li><a href="member.php?u=$rolluserid">$rollusername</a></li>
<td class="tcat" bgcolor="#919EBA">Character Level:</td>
<td class="panelsurround">$userinfo[field2]</td>
<td class="tcat" bgcolor="#919EBA">Character Class:</td>
<td class="panelsurround">$userinfo[field14]</td>

robert_2004 03-21-2006 12:16 PM

ataraxia, simply go to the plugin manager, find "Event Attendance - add enroll to create form" and edit it.
Now edit the PHP code
Code:

$disablesmiliesoption.='<div><label for="cb_rollcall"><input type="checkbox" name="useroll" value="1" id="cb_roll" tabindex="3" '.$useroll.' />'.$vbphrase['roll_allowenroll'].'</label></div>';
change to:
Code:

$disablesmiliesoption.='<div><label for="cb_rollcall"><input type="checkbox" checked name="useroll" value="1" id="cb_roll" tabindex="3" '.$useroll.' />'.$vbphrase['roll_allowenroll'].'</label></div>';

Now, things i would like to see on this mod:
- add the guest functionality, so poeple can enroll and add upto 5 guests
- make the data indexable/searchable, so that when you click on the user's profile, it will show the events this user has attened.
- after the event takes place, the next day, use a popup on the main screen to ask if the user did infact attend the event. If they choose yes, leave them on the list as a 'attendee' otherwise, remove their name from the list.

robert_2004 03-21-2006 12:21 PM

this is actually the first plugin i've installed, as i'm running a new copy of vB, trying to upgrade my forum.
I don't like these hooks - i can't change the position of where the enroll is going to be!

bada_bing 03-21-2006 12:50 PM

I would like to install this hack but I had a couple questions. I have 2 calandars on my site Private-Public and would like to create another called Swaps. How can assign this hack to only the Swaps calandar?

GSX-Racing 03-22-2006 01:47 AM

Quote:

Originally Posted by kommuni
unfortunately this doesn't seem to work together with the event-forum-plugin.

Probably anyone could make this possible?

Yes, I agree. I wish it worked with it.

blacklancer 03-24-2006 04:52 PM

i want to use this for another part of my forum, and in a different context. i am currently using it for events and i love it!

what i want to use it for is the following:

we have a parts review (car related website) and i want the option for users to specify whether or not they have any certain item installed on their car.

is there a way i can modify this to include it in a different section??

twitch 03-25-2006 04:49 PM

request to add an option for members to set a status that they will not be able to attend with reason stated

napukjon 04-09-2006 07:45 AM

This wont work for me.

It will only seem to work when i have events forum installed on my forum, and even then, when i create a new event, and select for people to be able to sign up, nothing happens. Theres nothing for my users to click or to say that they are attending. Also when i have both this and the Events Forum installed, and i go to delete a thread i get an error message!

Any help?

Cheers

Jon

Mighty Mojo 04-14-2006 06:13 AM

Quote:

Originally Posted by Mighty Mojo
How do I add VBulletin profile fields to the list of items shown?
I'm editing the rollbits with this info----but it isn't "parsing" the profile fields....

<li><a href="member.php?u=$rolluserid">$rollusername</a></li>
<td class="tcat" bgcolor="#919EBA">Character Level:</td>
<td class="panelsurround">$userinfo[field2]</td>
<td class="tcat" bgcolor="#919EBA">Character Class:</td>
<td class="panelsurround">$userinfo[field14]</td>

I'm an idiot, I CANNOT figure this out lol

I need to have some of the custom fields show next to the users name!

Do I need to have the $roll array in the event attendance show/enroll (in the plugin area) push the data of the field/s I need to show in the rollbits before I call them in rollbits?

Please help be display custom profile fields next to the usernames for individuals that have enrolled....please?

kurtbarker 04-23-2006 09:34 AM

hey mate, i'd really like to see the event's i'm attending in user profile as well

come on guyz, the more people that way it the more likely it'll be :D

sickboy6ths 04-26-2006 11:18 AM

Does anyone know... how to make these 2 Products compatible with eachother:
vb Event Forums: https://vborg.vbsupport.ru/showthread.php?t=102213
Together this mod would be perfect for my usage! Problem is... if there is an event linked to a thread, and someone opens the event... All the options for attending/unattending are not working, while in the normal calendar (view) it does.

andreamarucci 04-26-2006 03:57 PM

Maybe I've missed something but anyone know if there's a way to input the number of people attending the event instead of the default one? I think this would be a nice addition since if I organize, for example, a meeting, some people will attend alone and some others will attend with another person.

Any suggestion?


All times are GMT. The time now is 05:50 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01737 seconds
  • Memory Usage 1,848KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (4)bbcode_php_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete