PDA

View Full Version : reputation bar moved


ET 7
02-13-2011, 08:19 AM
Ok, I am trying to move my reputation green bar down to below the "thanked xx post"

is this the right place for the code and if so what do I change?

<li class="floatcontainer blockrow summaryinfo {vb:raw posneg}" id="reputationbit_{vb:raw reputation.postid}_{vb:raw reputation.userid}">
<div class="userinfo">
<div class="datetime">{vb:raw reputation.dateline} <span class="time">{vb:raw reputation.timeline}</span></div>
<vb:if condition="$vboptions['showuserraters']">
<div class="user">
<vb:if condition="$reputation['username']">
<a href="{vb:link member, {vb:raw reputation}, null, 'whoadded', 'username'}">{vb:raw reputation.username}</a>
<vb:else />
{vb:rawphrase n_a}
</vb:if>
</div>
</vb:if>
</div>

<div class="iteminfo">
<div class="title">
<span class="shade">{vb:rawphrase thread}:</span>
<vb:if condition="$reputation['title']">
<a class="smallfont" href="{vb:link thread, {vb:raw threadinfo}, {vb:raw pageinfo}}#post{vb:raw reputation.postid}">{vb:raw reputation.title}</a>
<vb:else />
{vb:rawphrase n_a}
</vb:if>
</div>
<p class="comment">{vb:raw reputation.reason}</p>
</div>
</li>

i got that code from "usercp_reputationbits"

OldSchoolDSL
02-13-2011, 06:03 PM
You're better off turning off your reputations through the AdminCP then to be removing code.

ET 7
02-13-2011, 06:04 PM
oh no, i'm not trying o turn it off, i am trying to move it from below the username to all the way at the bottom.

OldSchoolDSL
02-13-2011, 06:09 PM
oh no, i'm not trying o turn it off, i am trying to move it from below the username to all the way at the bottom.

Sorry, I mis-read your original question.

Doing this may require you to apply this template modification every time you update your copy of vBulletin.

With this said... You may want to look for the code in postbit_legacy or postbit (depending on which layout you are using)

ET 7
02-13-2011, 06:14 PM
whats the diff btw legacy and just postbit?

thats the thing, not sure what i do with the code when/if i find it

OldSchoolDSL
02-13-2011, 06:26 PM
whats the diff btw legacy and just postbit?

Best way I could describe it....

If the user avatar and basic user data is on the left of every post, you're using postbit_legacy (majority seem to use this)

If the user avatar and basic user data is above the post, then you're using postbit

thats the thing, not sure what i do with the code when/if i find it

Moving the code up or down within postbit_legacy or postbit, will change where things are displayed.

IMPORTANT: Backup your database, before making any changes on your live site. I advise you to try this out on your test site 1st, but still backup even if it works on your test site.

ET 7
02-13-2011, 06:48 PM
oh ok, than legacy it is.

how would i move it tho? like how much of the code do i copy and move?

ET 7
02-28-2011, 03:21 AM
anyone get a chacne to hlep me?