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
  #22  
Old 06-10-2007, 11:11 PM
neopet001 neopet001 is offline
 
Join Date: May 2007
Posts: 51
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good idea!
now I'm getting problem with the Dark_vb2 style while hacking this mod
Reply With Quote
  #23  
Old 06-11-2007, 02:19 AM
Smoothie Smoothie is offline
 
Join Date: Oct 2001
Location: New York
Posts: 1,834
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
In Template FORUMHOME find:


Code:
<!-- what's going on box -->

and replace it with:

Code:
<if condition="$show['member']">
<!-- what's going on box -->
The conditional appears to be missing its end tag (</if>)
Reply With Quote
  #24  
Old 06-11-2007, 05:21 AM
StarBuG's Avatar
StarBuG StarBuG is offline
 
Join Date: Dec 2001
Location: Germany
Posts: 1,033
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Smoothie View Post
The conditional appears to be missing its end tag (</if>)
It was not missing, I just forgot to move it to the optional part
I fixed it here and in the txt file.

Thx

StarBuG
Reply With Quote
  #25  
Old 06-17-2007, 02:39 AM
fateL fateL is offline
 
Join Date: Jan 2007
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I do the last optional part but it messes up the table.
Reply With Quote
  #26  
Old 06-17-2007, 07:40 AM
StarBuG's Avatar
StarBuG StarBuG is offline
 
Join Date: Dec 2001
Location: Germany
Posts: 1,033
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Then redo it.
Or get the original code back by restoring the template and do it again.

StarBuG
Reply With Quote
  #27  
Old 08-31-2007, 02:34 PM
StarBuG's Avatar
StarBuG StarBuG is offline
 
Join Date: Dec 2001
Location: Germany
Posts: 1,033
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

11 Installs on this one.

Any feedback on the success so far?
Reply With Quote
  #28  
Old 09-10-2007, 03:29 PM
amnesia623 amnesia623 is offline
 
Join Date: Jul 2006
Location: Glendale, AZ
Posts: 226
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Maybe this could be useful to show thread information to registered users only?
Reply With Quote
  #29  
Old 09-17-2007, 03:21 PM
hrk hrk is offline
 
Join Date: May 2007
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i wanted to install but ill hold till i gett this ans
can i just directly jum to ur
"If you want the "What is going on" box to be removed as well:" part?

thanks. nice mod .
Reply With Quote
  #30  
Old 09-18-2007, 04:29 AM
cpvr cpvr is offline
 
Join Date: Jul 2007
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Has this helped much?
Reply With Quote
  #31  
Old 09-25-2007, 12:36 PM
Shinou Shinou is offline
 
Join Date: Oct 2006
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nothing at all happened, I tried it on the vB default and no change at all. Everything is still there, anything I do wrong?
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 06:57 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.05170 seconds
  • Memory Usage 2,324KB
  • 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
  • (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
  • (4)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