Version: 0.0.2, by macooper
Developer Last Online: Sep 2007
Version: 3.5.0
Rating:
Released: 10-15-2005
Last Update: 10-16-2005
Installs: 71
Uses Plugins Template Edits
Is in Beta Stage
No support by the author.
This hack is based on tnguy3n's original Welcome Thread hack. But rewritten as a vbulletin product. Note that you MUST install this as a product, not a plugin. All credit for the original idea goes to tnguy3n, and this modification is posted with his kind permision.
This hack is currently to be treated as beta code. It has been tested on 2 small forums only at this stage. The hack makes no database changes, so should be reasonably safe on most sites. Installation involves loading the product XML and 1 small template change on the register template.
The product is configured via the VBulletin option pages, a new page is created specifically for this hack. The product supports 2 modes of operation :
1) At registration time, the user is prompted to make their own post. If no text is entered, then default text from the configuration page is used for the title and message body. In this mode, the user can choose not to post a welcome thread if they wish.
2) The second mode just creates a welcome thread for the user from the default title and message body with no user intervention.
Support for this mod will be on a best efforts basis. I will try to fix problems in a reasonable time frame, but due to other commitments, I can make no guarantees.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
I suggest, for the future version, to activate the "Welcome thread on registration" AFTER the Email Confirmation process are done
therefore no spamming will be created by "testing forum people"
Ciao!
I have a number of improvements planned for a future release, so I'll add that to the list. That would probably require a database change, as I would need somewhere to store the message during the registration process.
I had my first real test of this and found out one issue...I need the info under the user name updated to reflect their status. It's putting them as guest not as *Lieutenant* which is my *default* new registration status. Liz
the first IF condition in your template is not needed if you manage the template from within the plugin...
Code:
<if condition="($vboptions['welcomethread_userthread'] == 1) AND ($vboptions['welcomethread_enable'] == 1)">
...manage it from the hook "register_form_start" ... so you have less template filtering to do...
Thanks for the tip. I just tested that, and have now eliminated both conditionals from the template, which saves a query for those that only want an automated welcome thread.