The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Welcome headers - Improve community registration rates Details »» | |||||||||||||||||||||||||||
Welcome headers - Improve community registration rates
Developer Last Online: Nov 2020
vBulletin 3.6 users click here for the 3.6 compatible version of this plugin.
The out of the box vBulletin style does not have a robust method of informing users about their current activity status or user level. As a result, guests entering on a page other than the homepage (which is most often the case) have no idea what a forum is about or that they may need to register. Additionally, there are no visible status indicators, making it confusing for unconfirmed, unapproved or new members to know what to do or where to begin. To help solve these problems, the welcome headers plugin creates a 5-part set of conditionals to better introduce members to your community while pushing them to register, activate or post. The default templates are just that, default ? I highly encourage you to tweak the language and functions to meet the needs of your actual community environment. Modifications/ Instructions: Template edits: 2 Plugins: 1 (adds 1 template and several settings) This template hack should take under 5 minutes to implement and customize. What?s new in 4.1.0 The 4.1.0 version of this system is a complete rewrite from earlier versions. All of the original functionality still exists; however, the system has been improved to make it much more modular. With the new version, you can now turn on/off individual welcome header messages, configure the content and change other settings all from your ACP Options panel. Additionally, a 5th welcome header has been added for global announcements. With the exception of one small phrase change, this upgrade is seamless to upgrade. Upgrade Instructions: Full upgrade instructions can be found in the attached zip file. However, to avoid confusion anyone upgrading from the 4.0.x version of this plugin to 4.1.x should do the following: 1 ? Upload the new version of the plugin file based on your version of vBulletin (3.5 or 3.6). Be sure to set the override option to ?yes?. 2 ? Go to your phrase manager and search for the phrase ?first_visit_message?, copy any customizations you have made to this phrase into the phrase ?welcome_guest?. 3 ? Go to your vBulletin options, select the ?Welcome Header System? group and configure the options as desired. Customizing the content / messages To customize which messages appear or what they say, go to vBulletin options, select the ?Welcome Header System? group and configure the options as desired. Each phase can be modified by adding translation text. Details on how it all works: Step One: Turning lurkers into Members For most websites, upwards of 50% of traffic (or more) comes through search engines or deep links to threads, profiles and categories. Out of the box, vBulletin only displays a welcome message on the forum-homepage, meaning someone who enters through any other page does not have the benefit of seeing an explanation of the site or welcome message. The guest welcome header is used to explain the purpose of your site, sell users on the benefits of joining the community and push them to proactively register. Step Two: Making Users Confirm their Account Many vBulletin sites require email confirmation prior to being able to post or access an account. However, activation emails are often misdirected to spam folders, ignored or simply deleted, leaving unconfirmed users with little access rights and no explanation as to what is wrong with their account. The unconfirmed welcome header is used to inform unconfirmed members of their account status and to direct them to automatically resend their activation email, or to contact the webmaster for support. Step Three: Get non-posting users to post Another chronic problem faced by many forums is insuring users post after registering. Many new visitors register in order to access certain features with the intent of posting, but never do so. The never posted welcome header is used to encourage users to post for their first time and should ideally be linked directly to an introductions or new member forum to help users "break the ice". Step Four: Getting inactive users to become more active Many members start out as lurkers, register, post once or twice and then go back to being lurkers. Often time these members are not actively thinking about participating in topics or are still shy about interacting. The inactivity welcome header reminds members to make a post after a predetermined amount of time as specified by the forum administrator. Step Five: General Announcements Unfortunately the standard announcements are often overlooked or never even seen by members who use the "new posts feature". As a result, urgent notices may be missed by users causing problems and high volumes of support requests. The global announcement welcome header creates a message shown to all members who do not fall into the other welcome header groups (guest, unconfirmed, never posted, inactive). Whether it be a scheduled outage/ upgrade, an important request or the need to display an advertisement in a prominent spot, global announcements allow an administrator to effectively and quickly display messages in a way that is certain to be read. The results: At first glance this system may seem a bit superfluous, however, the numbers rarely lie, nor does the feedback. Since posting this plugin in October, it has risen to over 1700 confirmed installations and is now one of the top 5 vBulletin plugins. On ScubaBoard.Com, the site the system was originally tested on, posting rates have increased by over 100%; new user registration rates by over 60%; user activity by 50% and the welcome/ intro & greets forum has exploded over 400%. If you browse through the pages of this thread you will find even more real life testimonials and experiences from the thousands of people using the system. But enough about why -- give it a shot yourself and let me know how your results turn out. vBulletin 3.6 users click here for the 3.6 compatible version of this plugin. Show Your Support
|
Comments |
#812
|
|||
|
|||
Quote:
Click Here Code:
<if condition="THIS_SCRIPT != 'register' AND THIS_SCRIPT != 'login'"> <if condition="$show['guest']"> <!-- guest welcome message --> <br /> <div align="center"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" bgcolor="#00FF00"> <tr> <td class="alt1"> <phrase 1="faq.php?$session[sessionurl]" 2="register.php?$session[sessionurl]" 3="$vboptions[bbtitle]">$vbphrase[first_visit_message]</phrase> </td> </tr> </table> </div> <!-- / guest welcome message --> <else /> <if condition="is_member_of($bbuserinfo, 3)"> <!-- / unconfirmed user message --> <br /> <div align="center"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" bgcolor="#FFFF00"> <tr> <td class="alt1"> <phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_unconfirmed]</phrase> </td> </tr> </table> </div> <!-- / unconfirmed user message --> <else /> <if condition="$bbuserinfo[posts]<1"> <!-- never posted message --> <br /> <div align="center"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" bgcolor="#FF0000"> <tr> <td class="alt1"> <phrase 1="$bbuserinfo[username]" 2="$vboptions[bbtitle]">$vbphrase[welcome_neverposted]</phrase> </td> </tr> </table> </div> <!-- / never posted message --> <else /> <if condition="$headerstime - 1209600 > $bbuserinfo[lastpost]"> <!-- hasnt posted lately message --> <br /> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="alt1" bgcolor="#008080"> <phrase 1="$bbuserinfo[username]" 2="$vboptions[bbtitle]">$vbphrase[welcome_postmoreoften]</phrase> </td> </tr> </table> <!-- / hasnt posted lately message --> </if> </if> </if> </if> </if> |
#813
|
|||
|
|||
It looks like you only changed one of the headers...
<td class="alt1" bgcolor="#008080"> I might also recommend that you use css rather than html attributes to change the color. For example <td class="alt1" style="background-color:#008080"> |
#814
|
|||
|
|||
Quote:
|
#815
|
|||
|
|||
Quote:
- Guests - Unconfirmed Users - Users with no posts - Users with no recent activity |
#816
|
|||
|
|||
I have to admit, when I saw this I didn't thing much of it but decided to give it a try anyway. It has made a GREAT difference in not only guest registration but also in getting members who hadn't posted to do so. Thanks.
|
#817
|
|||
|
|||
This link at vbseo explains that they prefer to install these headers in the nav bar instead. This solves alot of the problems with them overwriting the site text in the search engine listings. (and negates my request to block them for the search engines)
http://www.vbseo.com/f34/get-users-r...hlight=headers Kind Regards Chris |
#818
|
|||
|
|||
All,
I've implemented this, but it is not working. I just want to check I've removed enough of of the "FORUMHOME". My amended code looks like this Code:
$stylevar[htmldoctype] <html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]"> <head> <!-- no cache headers --> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="-1" /> <meta http-equiv="Cache-Control" content="no-cache" /> <!-- end no cache headers --> $headinclude <title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title> </head> <body> $header $navbar <!-- main --> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <thead> chunk removed here <tr align="center"> <td class="thead"> </td> <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td> <td class="thead" width="175">$vbphrase[last_post]</td> <td class="thead">$vbphrase[threads]</td> <td class="thead">$vbphrase[posts]</td> <if condition="$vboptions['showmoderatorcolumn']"> <td class="thead">$vbphrase[moderator]</td> </if> </tr> </thead> $forumbits |
#819
|
|||
|
|||
All,
I've implemented this, but it is not working. I just want to check I've removed enough of of the "FORUMHOME". My amended code looks like this Code:
$stylevar[htmldoctype] <html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]"> <head> <!-- no cache headers --> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Expires" content="-1" /> <meta http-equiv="Cache-Control" content="no-cache" /> <!-- end no cache headers --> $headinclude <title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title> </head> <body> $header $navbar <!-- main --> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <thead> chunk removed here <tr align="center"> <td class="thead"> </td> <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td> <td class="thead" width="175">$vbphrase[last_post]</td> <td class="thead">$vbphrase[threads]</td> <td class="thead">$vbphrase[posts]</td> <if condition="$vboptions['showmoderatorcolumn']"> <td class="thead">$vbphrase[moderator]</td> </if> </tr> </thead> $forumbits |
#820
|
|||
|
|||
Hi, I installed this mod (have vB 3.5.4) and when I tested it out by signing up for a new account on my forum, I was still seeing the initial welcome message seen by unregistered guests, instead of the welcome_unconfirmed message.
Any idea why unconfirmed members are not seeing the right welcome message? UPDATE: When I finished the registration by confirming it, I did then see the welcome_neverposted message, so, it appears to be mostly working, just not the welcome_unconfirmed part. This is what the welcome_headers template looks like. I simply removed the tables and wrapped the message in DIV tags, but everything else was left intact: Code:
<if condition="THIS_SCRIPT != 'register' AND THIS_SCRIPT != 'login'"> <if condition="$show['guest']"> <!-- guest welcome message --> <div class="welcome_msg"> <phrase 1="faq.php?$session[sessionurl]" 2="register.php?$session[sessionurl]" 3="$vboptions[bbtitle]">$vbphrase[first_visit_message]</phrase> </div> <!-- / guest welcome message --> <else /> <if condition="is_member_of($bbuserinfo, 3)"> <!-- / unconfirmed user message --> <div class="welcome_msg"> <phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_unconfirmed]</phrase> </div> <!-- / unconfirmed user message --> <else /> <if condition="$bbuserinfo[posts]<1"> <!-- never posted message --> <div class="welcome_msg"> <phrase 1="$bbuserinfo[username]" 2="$vboptions[bbtitle]">$vbphrase[welcome_neverposted]</phrase> </div> <!-- / never posted message --> <else /> <if condition="$headerstime - 1209600 > $bbuserinfo[lastpost]"> <!-- hasnt posted lately message --> <div class="welcome_msg"> <phrase 1="$bbuserinfo[username]" 2="$vboptions[bbtitle]">$vbphrase[welcome_postmoreoften]</phrase> </div> <!-- / hasnt posted lately message --> </if> </if> </if> </if> </if> |
#821
|
|||
|
|||
scooby_simon,
How exactly is it _not_ working? |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|