###############################################################################
# Gender Stats on Forumhome Statistics Addon vB3.6 3.7 #
# By Renee Edit by DaNyA (Fuck You
[email protected], YOU ARE FAKE #
# Original
http://www.vbulletin.org/forum/showthread.php?t=99974 #
###############################################################################
Show summary gender on Forumhome
###############################################################################
# Step 1 #
###############################################################################
Go to AdminCP => User Profile Field Manager => Add New User Profile Field
Profile Field Type:
Single Selection Radio Buttons
Title: Gender
Description: Tell your gender.
Options:
Male
Female
No
Set Default: Yes
Once you got it done, write down your field# . i.e field7
if you want to display in postbit template
Edit you postbit and postbit_legacy
FIND:
PHP:
$vbphrase[posts]: $post[posts]
Add Below:
PHP:
<if condition="$post[fieldX] != ''"><br />
Gender: <img src="images/gender/$post[fieldX].gif" title="$post[fieldX]" align="center">
</if>
Important!!! look at fieldX edit X with your number field such as field7
###############################################################################
# Step 2 #
###############################################################################
Open product-gender_stats_1_0.xml
search for field7 then replace with fieldX
Important!!! look at fieldX edit X with your number field such as field7
###############################################################################
# Step 3 #
###############################################################################
product-gender_stats_1_0.xml
###############################################################################
# Step 4 #
###############################################################################
Upload images folder into Root Directory
Male.gif
Female.gif
Unknown.gif
###############################################################################
# Step 5 #
###############################################################################
Edit Template --> FORUMHOME
Search::
PHP:
<!-- today's birthdays -->
Add Above:
PHP:
<!-- Gender Stats on Forumhome Statistics Start -->
<tbody>
<tr>
<td class="alt2"><img src="$stylevar[imgdir_misc]/stats.gif" alt="<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>" border="0" /></td>
<td class="alt1" width="100%">
<div class="smallfont">$vbphrase[gender_on_board]</div>
<div class="smallfont">$vbphrase[gender_male]<img src="images/gender/Romeo.gif"> <img src="images/polls/bar6-l.gif" alt="" width="$allboys_picbar" height="10" border="0" /> $allboys_prozent % ($allboys)</div>
<div class="smallfont">$vbphrase[gender_female]<img src="images/gender/Juliet.gif"> <img src="images/polls/bar5-l.gif" alt="" width="$allgirls_picbar" height="10" border="0" /> $allgirls_prozent % ($allgirls)</div>
<div class="smallfont">$vbphrase[gender_undisclosed]<img src="images/gender/No.gif"> <img src="images/polls/bar4-l.gif" alt="" width="$allzwitter_picbar" height="10" border="0" /> $allzwitter_prozent % ($allzwitter)</div>
</td>
</tr>
</tbody>
<!-- Gender Stats on Forumhome Statistics -->
###############################################################################
# That's All #
###############################################################################