The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Innovative Signature Showcase Details »» | ||||||||||||||||||||||||
Innovative Signature Showcase
Developer Last Online: Oct 2023
Innovative Signature Showcase Slider for vBulletin 3.8.x By: This is very similar to DJ's Dynamic Tab Content for Postbit Legacy found here: https://vborg.vbsupport.ru/showthread.php?t=184136 Basically I decided to use this in my signatures and so can you, it slides in different content, the first is your signature per the boards allowed use and usergroup permissions, the second through sixth are per new profile fields you create and users simply fill in the images URL into their Options via USERCP. No Registration Required to view the mod, it is in the bottom of any post where you see the grey dots in the area where a normal signature is located. Demo: Click Here *Full install instructions included in the zip, once unzipped please view Install.html also the demo has two of the five images reused but hover to see the description is accurate Future Updates to include full instructions on how to utilize this signature postbit or postbit_legacy modification so it's not just images and that will include many ides I have not had time to look into just yet! Files have been updated and commented to include credit to all involved: Code:
/*********************************************** * Tab Content script v2.2- ? Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ Code:
/* June 23rd, 09 Code re-used by TheLastSuperman per Digital Jedi's mod marked as re-useable code, all credit remains that of Dynamic Drive and then for the original use in postbit, credits go to Digital Jedi. */ /* June 23rd, 09 File names and image names changed, folder location has changed as well, all was done so it would not interfer if you have DJ's mod installed as well, in my opinion each is like an add-on per say but DJ nailed this nice function a while back ;) S-MAN */ Please mark and installed and for MOTM if you feel its worth - ENJOY! TheLastSuperman http://www.innovationbyinstinct.com Download Now
Show Your Support
|
Comments |
#12
|
||||
|
||||
Quote:
Code:
<if condition="is_member_of($vbulletin->userinfo, 1, 2, 3)">The Code Here</if> Now you can do that in the entire sig or you can make this show below/above the normal sig there's all sorts of options if you want to tinker but look up how to make a child style, make one to do your testing so no interruptions to your live site/style. S-MAN |
#13
|
|||
|
|||
Thank you. I can do that. It would be much nicer if thise were a built-in feature in the ACP.
|
#14
|
||||
|
||||
Quote:
S-MAN |
#15
|
||||
|
||||
Ohh and FYI PGAmerica, you can use almost any code within the DIV's including phrases ($phrasename) and even splice other scripts into it to make it do other things, I'm still testing but have found tons of options so tinker with it and you'll see what I mean .
|
#16
|
||||
|
||||
I think there is an extra </if>
do I remove the first one? Code:
<if condition="$post['signature']"> <!-- sig --> <!-- / sig --> </if> <div align="center"><a class="musername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>'s Signature Showcase <br /> <!-- BEGIN POSTBIT SLIDE --> <div id="postbittabs$post[postid]" class="smanslide"> <ul> <li><span title="View Tab 1"><a href="#" rel="tab1$post[postid]" id="selected$post[postid]"> </a></span></li> <li><span title="View Tab 2"><a href="#" rel="tab2$post[postid]"> </a></span></li> <li><span title="View Tab 3"><a href="#" rel="tab3$post[postid]"> </a></span></li> <li><span title="View Tab 4"><a href="#" rel="tab4$post[postid]"> </a></span></li> <li><span title="View Tab 5"><a href="#" rel="tab5$post[postid]"> </a></span></li> <li><span title="View Tab 6"><a href="#" rel="tab6$post[postid]"> </a></span></li> </ul> <br style="clear: center" /> </div> <div class="smallfont"> <!-- SLIDE 1 CONTENT --> <div id="tab1$post[postid]" class="tabcontent"> <div class="info"> $post[signature]</div> </div> <!-- SLIDE 2 CONTENT --> <div id="tab2$post[postid]" class="tabcontent"> <div class="info"> <img alt="My 2nd Sig Pic" border="0" src="$post[field5]" border="0"/> </div> </div> <!-- SLIDE 3 CONTENT --> <div id="tab3$post[postid]" class="tabcontent"> <div class="info"> <img alt="My 3rd Sig Pic" border="0" src="$post[field6]" border="0"/> </div> </div> <!-- SLIDE 4 CONTENT --> <div id="tab4$post[postid]" class="tabcontent"> <div class="info"> <img alt="My 4th Sig Pic" border="0" src="$post[field7]" border="0"/> </div> </div> <!-- SLIDE 5 CONTENT --> <div id="tab5$post[postid]" class="tabcontent"> <div class="info"> <img alt="My 5th Sig Pic" border="0" src="$post[field8]" border="0"/> </div> </div> <!-- SLIDE 6 CONTENT --> <div id="tab6$post[postid]" class="tabcontent"> <div class="info"> $post[field9] </div> </div> </div> <script type="text/javascript"> var mytabs=new ddtabcontent("postbittabs$post[postid]") mytabs.setpersist(false) mytabs.setselectedClassTarget("link") mytabs.init() </script> <!-- END POSTBIT SLIDE --> </div> <!-- / sig --> </if> ah, nvm that. I have to have something in my sig for it to show thx, got it working, but you still have an extra closing if tag in your instructions |
#17
|
||||
|
||||
Quote:
Thanks for that catch I cleaned it up a bit, and getting ready to update now. Revised below: Code:
<!-- POSTBIT SLIDE START --> <if condition="$post['signature']"> <!-- sig --> <!-- / sig --> <div align="center"><a class="musername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>'s Signature Showcase <br /> <div id="postbittabs$post[postid]" class="smanslide"> <ul> <li><span title="View Tab 1"><a href="#" rel="tab1$post[postid]" id="selected$post[postid]"> </a></span></li> <li><span title="View Tab 2"><a href="#" rel="tab2$post[postid]"> </a></span></li> <li><span title="View Tab 3"><a href="#" rel="tab3$post[postid]"> </a></span></li> <li><span title="View Tab 4"><a href="#" rel="tab4$post[postid]"> </a></span></li> <li><span title="View Tab 5"><a href="#" rel="tab5$post[postid]"> </a></span></li> <li><span title="View Tab 6"><a href="#" rel="tab6$post[postid]"> </a></span></li> </ul> <br style="clear: center" /> </div> <div class="smallfont"> <!-- SLIDE 1 CONTENT --> <div id="tab1$post[postid]" class="tabcontent"> <div class="info"> $post[signature]</div> </div> <!-- SLIDE 2 CONTENT --> <div id="tab2$post[postid]" class="tabcontent"> <div class="info"> <img alt="My 2nd Sig Pic" border="0" src="$post[field5]" border="0"/> </div> </div> <!-- SLIDE 3 CONTENT --> <div id="tab3$post[postid]" class="tabcontent"> <div class="info"> <img alt="My 3rd Sig Pic" border="0" src="$post[field6]" border="0"/> </div> </div> <!-- SLIDE 4 CONTENT --> <div id="tab4$post[postid]" class="tabcontent"> <div class="info"> <img alt="My 4th Sig Pic" border="0" src="$post[field7]" border="0"/> </div> </div> <!-- SLIDE 5 CONTENT --> <div id="tab5$post[postid]" class="tabcontent"> <div class="info"> <img alt="My 5th Sig Pic" border="0" src="$post[field8]" border="0"/> </div> </div> <!-- SLIDE 6 CONTENT --> <div id="tab6$post[postid]" class="tabcontent"> <div class="info"> $post[field9] </div> </div> </div> <script type="text/javascript"> var mytabs=new ddtabcontent("postbittabs$post[postid]") mytabs.setpersist(false) mytabs.setselectedClassTarget("link") mytabs.init() </script> </div> </if> <!-- /POSTBIT SLIDE END --> |
#18
|
||||
|
||||
Im having a bit of an issue with this.
Code:
<link rel="stylesheet" type="text/css" href="$vboptions[bburl]/postbit_slide/slidecontent.css" /> <script type="text/javascript" src="$vboptions[bburl]/postbit_slide/slidecontent.js"> Code:
<link rel="stylesheet" type="text/css" href="$vboptions[bburl]/forum/postbit_slide/slidecontent.css" /> <script type="text/javascript" src="$vboptions[bburl]/forum/postbit_slide/slidecontent.js"> That did get the dots to appear but the actual tab functionality was lost. Leaving me with a funny column of dots not a row. And neither of those two codes would recognize the profile fields I used for the second and up slots. And I did set the profile field id's properly. I was hoping you could help me out. I would really like to use this mod since it was a great idea to use it for signatures, I really dont want to have to uninstall. |
#19
|
||||
|
||||
Quote:
|
#20
|
||||
|
||||
Quote:
just in case I dont know what I'm talking about though I guess its best to explain. My forum root ( what I assume) is public_html/forum this is where I have placed your directory and files. |
#21
|
||||
|
||||
Quote:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|