
04-12-2004, 01:14 PM
|
 |
|
|
Join Date: Apr 2002
Location: Miami, FL
Posts: 1,107
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by SVTOA
Your support for this hack is beyond compare. I think I will have to paypal another donation to the cause!
With that said... I sure do not mean to be a PITA, but.. Any ideas as to why the code that inserted into the POSTBIT_LEGACY and USERINFO templates that will create a link to the member's Photopost gallery will work fine in the postbit and user profile but nothing shows up or happens with the SHOWGARAGE when I insert the eaxct same code into that template?
This is how I am doing it in POSTBIT_LEGACY:
(my board url edited for example)
Code:
<!-- added gallery code here --><div class="smallfont"><br><br><a href="http://www.yourwebsite.com/vbulletin/photopost/showgallery.php?cat=500&ppuser=$userinfo[userid]&thumb=1"><smallfont>View my photo gallery</smallfont></a><br>
<!-- end gallery code-->
I would like it so that when a garage is viewed, there is a link generated to the user's photopost just like we have on the forums. Right now we are doing this manually.
|
Use this instead:
HTML Code:
<!-- added gallery code here --><div class="smallfont"><br><br><a href="$vboptions[bburl]/photopost/showgallery.php?cat=500&ppuser=$data[userid]&thumb=1"><smallfont>View my photo gallery</smallfont></a><br>
<!-- end gallery code-->
|