The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
I've tried searching it on my styles/template option, however I'm not the greatest in touching up the design on my forum, so i was wondering if someone could just take a quick moment and point me in the right direction
![]() thanks. |
#2
|
||||
|
||||
![]()
What do you want to do with them? Most of it is done in memberinfo_block_xxxx
|
#3
|
|||
|
|||
![]()
pretty much, there is currently a tab for itrader, that allows users to provide feedback for an individual.
However, I want to move it over to postbit legacy, as a button, so people woudln't ahve to go that far to look for it. ![]() So after looking at the right tab, i found this.. Code:
<br><a href="itrader_feedback.php?$session[sessionurl]u=$userinfo[userid]"><strong>$vbphrase[itrader_submit_feedback] $userinfo[username]</strong></a> </strong></a></td> <br><a href="itrader_feedback.php?$session[sessionurl]u=$userinfo[userid]"><strong>$vbphrase[itrader_submit_feedback] $userinfo[username]</strong></a> Essentially, all I want to do is create a new image button in the postbit legacy profile bit. But I'm unsure how to actually write the code to make a button. |
#4
|
||||
|
||||
![]()
And image is displayed in html by:
HTML Code:
<img src="path/to/image.jpg" alt="xxx" width="y" height="z">
HTML Code:
<a href="itrader_feedback.php?$session[sessionurl]u=$userinfo[userid]"><img src="path/to/image.jpg" alt="$vbphrase[itrader_submit_feedback] $userinfo[username]" width="y" height="z"></a> |
#5
|
|||
|
|||
![]()
thanks, there is only one correction needed:
instead of $userinfo[userid] it is-> $post[userid] HTML Code:
<a href="itrader_feedback.php?$session[sessionurl]u=$post[userid]"><img src="path/to/image.jpg" alt="$vbphrase[itrader_submit_feedback] $userinfo[username]" width="y" height="z"></a> |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|