Log in

View Full Version : Where can i look at the profile tabs?


murekhalir
01-27-2009, 04:08 PM
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.

Lynne
01-27-2009, 04:36 PM
What do you want to do with them? Most of it is done in memberinfo_block_xxxx

murekhalir
01-28-2009, 05:10 AM
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.


https://vborg.vbsupport.ru/external/2009/01/5.jpg



So after looking at the right tab, i found this..


<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>

I'm not sure why it double displayed?

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.

Lynne
01-28-2009, 03:04 PM
And image is displayed in html by:
<img src="path/to/image.jpg" alt="xxx" width="y" height="z"> So, if you want to use an image to link to the Submit Feedback of itrader, you'd go:


<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>I think that should work.

murekhalir
01-29-2009, 02:36 AM
thanks, there is only one correction needed:

instead of $userinfo[userid] it is-> $post[userid]

<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>