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

Reply
 
Thread Tools
Welcome Thread with VB Options Details »»
Welcome Thread with VB Options
Version: 1.00, by lil7rocket lil7rocket is offline
Developer Last Online: Feb 2009 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.6.5 Rating:
Released: 04-07-2007 Last Update: Never Installs: 37
 
No support by the author.

FROM AmyKhar
"This little mod will start a new thread in the forum of your choice when somebody registers.

The thread message is contained in a template, and easily customizeable on your part.

This version posts the thread when the user registers - but before he activates his email address."

You can set the ForumID, UserID and Username in VBoptions

on register it sends the Thread to moderations so you can customize it.

I'll be adding a second release soon with that functionality removed.

Thanks to AmyKhar for the original hack and Nick for his excellent debugging skills and intuitive coding.

Co-Author Nick of VBnova

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 04-09-2007, 02:25 PM
AuroraStorm's Avatar
AuroraStorm AuroraStorm is offline
 
Join Date: Nov 2006
Location: ATHell
Posts: 332
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh I wondered about this - I saw something similar on vbCoderz...I'll try it when I get home...
Reply With Quote
  #13  
Old 04-09-2007, 03:17 PM
Luky Luky is offline
 
Join Date: Oct 2006
Location: Australia
Posts: 595
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

please learn me on how to make it NOT go into the moderation thing, not like the mod is gona go corrupt and start spamming viagra pills or nothing...
Reply With Quote
  #14  
Old 04-13-2007, 04:53 AM
adwade adwade is offline
 
Join Date: Aug 2006
Location: SouthEast, TN
Posts: 323
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Tralala View Post
Can this be set to create the Welcome Thread *after* email activation
Where the xml product reads:

Code:
<hookname>register_addmember_complete</hookname>
couldn't it be revised to...

Code:
<hookname>register_activate_process</hookname>
instead, and accompolish that feature?
Reply With Quote
  #15  
Old 04-13-2007, 08:00 PM
lil7rocket lil7rocket is offline
 
Join Date: Jul 2006
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by adwade View Post
Where the xml product reads:

Code:
<hookname>register_addmember_complete</hookname>
couldn't it be revised to...

Code:
<hookname>register_activate_process</hookname>
instead, and accompolish that feature?
that is possible try it and letmeknow
Reply With Quote
  #16  
Old 04-13-2007, 08:23 PM
adwade adwade is offline
 
Join Date: Aug 2006
Location: SouthEast, TN
Posts: 323
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Haven't installed the Product yet, but I am just fixing to so will let others know how it goes when I try the revision I mentioned directly above.
Reply With Quote
  #17  
Old 04-13-2007, 09:23 PM
lil7rocket lil7rocket is offline
 
Join Date: Jul 2006
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

if it works post it and I will add it to the main post
Reply With Quote
  #18  
Old 04-13-2007, 09:42 PM
adwade adwade is offline
 
Join Date: Aug 2006
Location: SouthEast, TN
Posts: 323
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well no, the Product didn't work for me. I imported it via Advanced Product Management's [Add/Import Product], but I ended up w/o any welcome_thread template.

In looking thru your xml file, I no longer see the section that contained the original text for the welcome_thread template as AmyKhar's did. So I just figured it was being created by some other fancy method. Is that the case, or does your MOD require one to first install AmyKhar's version 'then' install yours allowing an overwrite via the xml file?


The 2 sections of the xml file I revised are as follows:

starting on line 20, where you have...

Code:
{
    $dataman->setr('userid', $post['userid']);
}]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>welcome thread upon registration</title>
            <hookname>register_addmember_complete</hookname>
I revised to...

Code:
{
    $dataman->setr('userid', $post['userid']);
}]]></phpcode>
        </plugin>
// NOTICE: Revised hookname from register_addmember_complete to register_activate_process
// Done in an attempt to delay the thread creation until after a user is verified by email
        <plugin active="1" executionorder="5">
            <title>welcome thread upon registration</title>
            <hookname>register_activate_process</hookname>
Then under the setup variables section, on line 64 where you have...

Code:
$title = "Welcome: " . $username; // The thread title
I changed it to...

Code:
$title = "Welcome: " . $userinfo[username].  " from ". $userinfo[field5]; // The thread title
Note field5 is a user profile field that contains the user's State or Country
Sorry, you're dealing with a non-coder here so I have little clue as to what may be wrong.
Reply With Quote
  #19  
Old 04-15-2007, 07:48 AM
lil7rocket lil7rocket is offline
 
Join Date: Jul 2006
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hold on I will PM the welcome_thread template to you
Reply With Quote
  #20  
Old 04-18-2007, 04:49 PM
breamy1990 breamy1990 is offline
 
Join Date: Mar 2007
Location: United Kingdom
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How do i make it so it doesnt require moderation and instead just posts it anyway ?
Reply With Quote
  #21  
Old 05-01-2007, 11:20 PM
Jeordie015 Jeordie015 is offline
 
Join Date: Nov 2002
Location: Illinois, USA
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How can you change the thread title?
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:07 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.12848 seconds
  • Memory Usage 2,307KB
  • Queries Executed 25 (?)
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_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete