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

Reply
 
Thread Tools
Remove statistic information to increase registrations Details »»
Remove statistic information to increase registrations
Version: 1.00, by StarBuG StarBuG is offline
Developer Last Online: Nov 2022 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 3.6.7 Rating:
Released: 06-02-2007 Last Update: 06-10-2007 Installs: 33
Template Edits
 
No support by the author.

Introduction:

I came up with this idea when I thought about "what discourages me from registering with a forum I don't know when the topic interests me?"

Ask yourself what you do when you are searching for a topic and find a forum.
Where do you look first? What is it that turns you away?

Right! You/I first check to see how many threads and posts are in this forum and then I check the stats for how many registered members there are.
If these numbers are to low for me, then I most likely don't even start to read in the forum.
Does this sound familiar to you? If it does this hack is for you!

What this hack does:

It removes the columns "threads" and "posts" (count) for guests but leaves them for members on FORUMHOME and FORUMDISPLAY.
Optional it removes the whole "what is going on" box.
This way you get rid of unimportant information for guests and let them focus on your content.
These information are only helpful anyway if you are the top dog in your niche and want to show of what you got. If you have a smaller forum these information will most likely discourage guests more then it would encourage them.


Installation:

Templates to edit: 6



In Template FORUMHOME find:



Code:
<td class="thead">$vbphrase[threads]</td>
      <td class="thead">$vbphrase[posts]</td>
and replace it with:



Code:
       <if condition="$show['member']">
       <td class="thead">$vbphrase[threads]</td>
       <td class="thead">$vbphrase[posts]</td>
      </if>
find:



Code:
<td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong>
and replace it with:



Code:
<if condition="$show['member']">
         <td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong>
        <else />
         <td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">4<else />3</if>"><div class="smallfont"><strong>
        </if>
In Template forumhome_forumbit_level1_nopost



find:



Code:
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
and replace it with:



Code:
<if condition="$show['member']">
        <td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
    <else />
        <td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">4<else />3</if>">
    </if>
In Template forumhome_forumbit_level1_post



find:



Code:
<td class="alt1">$forum[threadcount]</td>
        <td class="alt2">$forum[replycount]</td>
and replace it with:



Code:
<if condition="$show['member']">
         <td class="alt1">$forum[threadcount]</td>
             <td class="alt2">$forum[replycount]</td>
            </if>
In Template forumhome_forumbit_level2_nopost



find:



Code:
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">5<else />4</if>">
and replace it with:



Code:
<if condition="$show['member']">
     <td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">5<else />4</if>">
    <else />
     <td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">3<else />2</if>">
    </if>
In Template forumhome_forumbit_level2_post



find:



Code:
<td class="alt1">$forum[threadcount]</td>
    <td class="alt2">$forum[replycount]</td>
and replace it with:



Code:
<if condition="$show['member']">
      <td class="alt1">$forum[threadcount]</td>
      <td class="alt2">$forum[replycount]</td>
  </if>
In Template FORUMDISPLAY



find:



Code:
<td class="thead">$vbphrase[threads]</td>
       <td class="thead">$vbphrase[posts]</td>
and replace it with:



Code:
<if condition="$show['member']">
       <td class="thead">$vbphrase[threads]</td>
       <td class="thead">$vbphrase[posts]</td>
      </if>
OPTIONAL:



If you want the "What is going on" box to be removed as well:



In Template FORUMHOME find:



Code:
<!-- what's going on box -->
and replace it with:



Code:
<if condition="$show['member']">
<!-- what's going on box -->
find:



Code:
<!-- end what's going on box -->
and replace it with:



Code:
<!-- end what's going on box -->
</if>
If you install this hack, please mark it as installed. Thank you.

DEMO: http://www.patientenfragen.net

NOTE:

I have just installed this mod on my forum www.patientenfragen.net and can't yet say if it really increases the registration rate like I think it will. But we will see

Feedback is welcome

StarBuG

Show Your Support

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

Comments
  #32  
Old 10-21-2007, 12:31 PM
StarBuG's Avatar
StarBuG StarBuG is offline
 
Join Date: Dec 2001
Location: Germany
Posts: 1,033
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Redo all steps.

It seems you missed something then.
Reply With Quote
  #33  
Old 11-04-2007, 10:19 PM
yoyoyoyo's Avatar
yoyoyoyo yoyoyoyo is offline
 
Join Date: Dec 2004
Location: USA
Posts: 1,612
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here is a TMS (Template Modification System) XML file, for those that have TMS installed. The XML includes the optional removal of the "What's Going On" area, so if you want to allow guests to see that edit the XML accordingly.
Reply With Quote
  #34  
Old 11-06-2007, 04:05 PM
StarBuG's Avatar
StarBuG StarBuG is offline
 
Join Date: Dec 2001
Location: Germany
Posts: 1,033
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks

I missed to attach the xml myself
Reply With Quote
  #35  
Old 11-25-2007, 03:00 PM
AWJunkies AWJunkies is offline
 
Join Date: Jan 2005
Location: San Diego
Posts: 947
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey there is an issue with the mod. On your site you seem to have only ONE Category. When you have multiple categories this mod doesn't work. It ONLY works in the first cat and not the rest. The other cats show blank for DATA but still have the template. Uploading pic now. I have done the edits manually and with the xml and get same issue. There has been no edits or mods effecting the area either. I am stumped why it would do this?

Side note where did you get the mod to remove the displayforum info stuff to show the thread title and forum title instead?

For instance it says this: http://www.elternfragen.net/chat-eck...een-t1351.html
Reply With Quote
  #36  
Old 11-25-2007, 03:24 PM
StarBuG's Avatar
StarBuG StarBuG is offline
 
Join Date: Dec 2001
Location: Germany
Posts: 1,033
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It works with multiple categories, I have tested this.

You have modified your forumhome to put spaces between categories.
This is the reason for why my mod is not working on your forum.

You have to find the colspan part in your modified version and adapt my mod to your forum.
Reply With Quote
  #37  
Old 11-25-2007, 05:44 PM
AWJunkies AWJunkies is offline
 
Join Date: Jan 2005
Location: San Diego
Posts: 947
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yeah I thought that might be it. But weird it works for first category. Not sure what mod I have for the spacing was looking all over this site and non of them is what I used. SO will look.

EDITED:

OK works perfect I found the template and product. Edited it and walla works perfect. Thanks so much a much needed mod.
Reply With Quote
  #38  
Old 11-25-2007, 06:02 PM
StarBuG's Avatar
StarBuG StarBuG is offline
 
Join Date: Dec 2001
Location: Germany
Posts: 1,033
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You're welcome
Reply With Quote
  #39  
Old 11-25-2007, 08:01 PM
ymy ymy is offline
 
Join Date: Feb 2003
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks a lot

I removed only "What is going on" one year ago

in this year the registration increases from about 3000 user to about 65000 user

* I don’t know if this was reason

YmY
Reply With Quote
  #40  
Old 11-26-2007, 05:59 PM
AWJunkies AWJunkies is offline
 
Join Date: Jan 2005
Location: San Diego
Posts: 947
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Side note where did you get the mod to remove the displayforum info stuff to show the thread title and forum title instead?

For instance it says this: http://www.elternfragen.net/chat-eck...een-t1351.html
Reply With Quote
  #41  
Old 11-26-2007, 06:20 PM
StarBuG's Avatar
StarBuG StarBuG is offline
 
Join Date: Dec 2001
Location: Germany
Posts: 1,033
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The mod rewrite of my urls is done by vBSEO as well as a lot other SEO optimizations.
However vBSEO costs 149$

There are other free mods out there that do the mod rewrite of the url but not all the SEO options you get with vBSEO.

There is a big discussion about if it is worth the money or not. 50% say it is, 50% say it is not.

I bought 2 licenses mainly because of the mod rewrite of the urls and the total compatibility with mods and add ons.
I tried the free mods and they all had their flaws.
So I can say for myself, that for me it was worth spending the money.

But that is a personal choice.
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 11:01 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.05198 seconds
  • Memory Usage 2,322KB
  • 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
  • (18)bbcode_code
  • (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