vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Calendar Enhancements - Farcaster's Event Attendance (https://vborg.vbsupport.ru/showthread.php?t=129088)

TheMilkCarton 07-25-2007 09:26 AM

I have 1.2.1 installed, and I have just noticed n's are still being truncated.

At what part in the code did you implement this code fix? I'd like to look in the plugins and make sure it's there correctly.

chris1979 07-28-2007 07:50 AM

Anyone going to respond to Elenna?

y2krazy 08-17-2007 10:56 PM

Is this compatible with 3.6.8?

Farcaster 08-20-2007 09:36 PM

Quote:

Originally Posted by y2krazy (Post 1319938)
Is this compatible with 3.6.8?

Yes.

Elenna 08-21-2007 08:26 PM

Quote:

Originally Posted by chris1979 (Post 1303717)
Anyone going to respond to Elenna?

:D I keep checking, but I'm not holding my breath :)

SVTCobraLTD 08-24-2007 03:43 PM

Found my answer. Will be installing this shortly.

SVT

USAMustangs.com 09-07-2007 06:49 AM

Installed and it seems to be working fine for all newly created calendar events.

However, how can you get to add the RSVP to calendar events created prior to installing this feature?

Thanks.

Elenna 09-07-2007 01:45 PM

Quote:

Originally Posted by USAMustangs.com (Post 1334077)
Installed and it seems to be working fine for all newly created calendar events.

However, how can you get to add the RSVP to calendar events created prior to installing this feature?

Thanks.

I haven't tested it, but you should be able to Edit the Event (where you would change description, etc) and check the Allow RSVP box.

Elenna 09-07-2007 02:39 PM

I believe I've figured out how to get custom userfields to display.

NOTE: This involved modifying the plugins used. This will pull the most current information in the database, as opposed to pulling that information at the time that the person RSVPd.

Step 1: In AdminCP, go to User Profile Fields and make note of the field names (i.e. field14) that you want to use.

Step 2: Go to Product Manager> Plugin Manager Scroll down until you see "Add RSVPs to Event Description"

FIND
Code:

// SELECT SQL for RSVPs for this event
IN LINE
Code:

SELECT    u.username, ea.userid, ea.response , ea.comment, ea.guests, ea.rsvp_date, u.avatarid, u.avatarrevision, avatarpath, NOT ISNULL(customavatar.userid) AS hascustom, customavatar.dateline,
            customavatar.width, customavatar.height

ADD
Code:

, userfield.field14, userfield.field10
(add or remove ,userfield.field for each profile field you need to pull)

FIND
Code:

            LEFT JOIN " . TABLE_PREFIX . "customavatar AS customavatar ON customavatar.userid = u.userid
ADD AFTER
Code:

  LEFT JOIN " . TABLE_PREFIX . "userfield AS userfield ON userfield.userid = u.userid
Now you can modify your template (Style> Your Style> Edit Templates> Calendar> calendar_rsvp_bit)
You can use $rsvp[fieldXX] wherever you'd like that field to display, replacing XX with the field number, like you added to the select statement above.

Now, every time the event is viewed, it will pull the most current information from those profile fields and display them.



If you'd like to change the option to sort by one of the profile fields (for raids, etc) you can edit the following section:

In same Plugin above, FIND
Code:

    // Display RSVPs
    // Setup Sort Order
    switch($vbulletin->options['rah_rsvp_sort']) {
        case 0: $orderby = "u.username"; break;
        case 1: $orderby = "ea.rsvp_date";break;
    };

REPLACE with:
Code:

$orderby = "userfield.field14";
Be sure to REMOVE the ending };

Where field14 is the field that you wish to sort by.

DJFriar 09-08-2007 06:59 PM

Is there a way to disable the ability to select "No"??? I want people to just be able to say they are attending or they might be able to attend. We don't care who can't attend.


All times are GMT. The time now is 03:40 AM.

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.01658 seconds
  • Memory Usage 1,745KB
  • 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
  • (7)bbcode_code_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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