vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=192)
-   -   Forum Home Enhancements - Remove statistic information to increase registrations (https://vborg.vbsupport.ru/showthread.php?t=148790)

StarBuG 06-02-2007 10:00 PM

Remove statistic information to increase registrations
 
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

bongwater 06-03-2007 10:55 AM

thanks, I installed most of the code in my forum =)

StarBuG 06-03-2007 11:06 AM

I marked the remove part of the "what is going on" box as optional because I think that some admins still want these informations displayed.

Thanks for the hint ;)

Let me know how it works out for you

StarBuG

jerseyda6 06-03-2007 04:51 PM

hmmmmmmmm

bashy 06-03-2007 06:56 PM

Quote:

Originally Posted by jerseyda6 (Post 1260444)
hmmmmmmmm

Such an informative post, get with the program!

Thanks for this, gonna install now, sounds like a top idea, much appreciated :)

EDIT:

ok trying to install but i do not have this code in my forumhome
Code:

<td class="thead">$vbphrase[threads]</td>
      <td class="thead">$vbphrase[posts]</td>

Any thoughts please?

StarBuG 06-03-2007 07:32 PM

It's in line 39 & 40 of the standard FORUMHOME template of vB 3.6.7

A few lines under <!-- main -->

bashy 06-03-2007 09:12 PM

Me using the mns7 style, looks like this aint for me then, oh well, thanks anyway, still a great idea ;)

Fungsten 06-03-2007 09:30 PM

Installed.

rjmjr69 06-03-2007 09:59 PM

Can this be made into a plug in or product so members dont have to edit so many templates themselfs? I do not mind doing the edits I actually rather do it myself but I know allot of people on here are going to pass this hack up due to having to edit templates....... Its scary for allot of people.

As a hack user/installer what I first look for is the description of the hack and the installation information how long how many edits how many uploaded files how many plug ins etc etc..... lol
You'll end up with more members installing this cool mod if you do.

Good work non the less keep it up thanks.

Fungsten 06-03-2007 10:09 PM

I also pass up MODS if you have to manually edit too many templates.

Quote:

Originally Posted by rjmjr69 (Post 1260625)
Can this be made into a plug in or product so members dont have to edit so many templates themselfs? I do not mind doing the edits I actually rather do it myself but I know allot of people on here are going to pass this hack up due to having to edit templates....... Its scary for allot of people.

As a hack user/installer what I first look for is the description of the hack and the installation information how long how many edits how many uploaded files how many plug ins etc etc..... lol
You'll end up with more members installing this cool mod if you do.

Good work non the less keep it up thanks.



All times are GMT. The time now is 05:43 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01133 seconds
  • Memory Usage 1,762KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (19)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete