vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Mini Mods - Innovative Signature Showcase (https://vborg.vbsupport.ru/showthread.php?t=228026)

TheLastSuperman 11-29-2009 11:46 PM

Quote:

Originally Posted by mk craig 42 (Post 1922582)
There is no header_include - Only headinclude
However when i add it to the very bottom of that, my whole forum pretty much disappears, there are no forum categories, only the information at the bottom, such as who is online and the Icon Legend..

Am i doing anything wrong?

Your correct, it is headinclude ;)

Find:

Code:

<vb:if condition="$vboptions['externalrss']">
        <link rel="alternate" type="application/rss+xml" title="{vb:raw vboptions.bbtitle} RSS Feed" href="{vb:raw vboptions.bburl}/external.php?type=RSS2" />
        <vb:if condition="$show['foruminfo'] OR $show['threadinfo']">
                <link rel="alternate" type="application/rss+xml" title="{vb:raw vboptions.bbtitle} - {vb:raw foruminfo.title_clean} - RSS Feed" href="{vb:raw vboptions.bburl}/external.php?type=RSS2&amp;forumids={vb:raw foruminfo.forumid}" />
        </vb:if>
</vb:if>

<link rel="stylesheet" type="text/css" href="{vb:stylevar yuipath}/reset-fonts/reset-fonts.css" />
<link rel="stylesheet" type="text/css" href="{vb:var vbcsspath}vbulletin.css,vbulletin-chrome.css,components.css<vb:if condition="$show['editor_css']">,editor.css</vb:if>" />

Add after:

Code:

<link rel="stylesheet" type="text/css" href="{vb:raw vboptions.bburl}/postbit_slide/slidecontent.css" />
<script type="text/javascript" src="{vb:raw vboptions.bburl}/postbit_slide/slidecontent.js">
/***********************************************
* 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
***********************************************/
</script>

Now give it a go ;)

Boko577 12-25-2009 09:35 AM

I didn't understand steps 3 and up in your tutorial. Could you please make those more understandable and easy to follow? Sorry, I'm sort of a newb, but yeah...

TheHardest 12-26-2009 01:02 PM

I had some errors in vB4.0 Gold so I changed it a little.

<a class="musername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
to
<a class="musername" href="member.php?{vb:raw post.userid}-{vb:raw post.musername}">{vb:raw post.musername}</a>

,

$post[signature]
to
{vb:raw post.signature}


And

src="$post[field5]"
to
src="{vb:raw post.field6}"





Code:

<strong></strong>
                <!-- POSTBIT SLIDE START -->
<if condition="$post['signature']">
                        <!-- sig -->

                        <!-- / sig -->

<div align="center"><a class="musername" href="member.php?{vb:raw post.userid}-{vb:raw post.musername}">{vb:raw 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>
 </ul>
<br style="clear: center" />
</div>
<div class="smallfont">
 
<!-- SLIDE 1 CONTENT -->
<div id="tab1$post[postid]" class="tabcontent">
<div class="info">                               
                                {vb:raw 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="{vb:raw 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="{vb:raw 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="{vb:raw 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="{vb:raw post.field8}" border="0"/>
</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 -->


TheLastSuperman 12-28-2009 01:22 AM

Quote:

Originally Posted by Boko577 (Post 1937892)
I didn't understand steps 3 and up in your tutorial. Could you please make those more understandable and easy to follow? Sorry, I'm sort of a newb, but yeah...

See Below

Quote:

Originally Posted by TheHardest (Post 1938576)
I had some errors in vB4.0 Gold so I changed it a little.

<a class="musername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
to
<a class="musername" href="member.php?{vb:raw post.userid}-{vb:raw post.musername}">{vb:raw post.musername}</a>

,

$post[signature]
to
{vb:raw post.signature}


And

src="$post[field5]"
to
src="{vb:raw post.field6}"





Code:

<strong></strong>
                <!-- POSTBIT SLIDE START -->
<if condition="$post['signature']">
                        <!-- sig -->

                        <!-- / sig -->

<div align="center"><a class="musername" href="member.php?{vb:raw post.userid}-{vb:raw post.musername}">{vb:raw 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>
 </ul>
<br style="clear: center" />
</div>
<div class="smallfont">
 
<!-- SLIDE 1 CONTENT -->
<div id="tab1$post[postid]" class="tabcontent">
<div class="info">                               
                                {vb:raw 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="{vb:raw 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="{vb:raw 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="{vb:raw 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="{vb:raw post.field8}" border="0"/>
</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 -->


Sorry, seems I uploaded the 3.8 file by mistake last time I'll have it updated tomorrow with the 4.x version I still have the .zip here on my hd and it's very similar to your code TheHardest ;)

Mike

TheLastSuperman 12-28-2009 01:32 AM

Quote:

Originally Posted by TheHardest (Post 1938576)
I had some errors in vB4.0 Gold so I changed it a little.

<a class="musername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
to
<a class="musername" href="member.php?{vb:raw post.userid}-{vb:raw post.musername}">{vb:raw post.musername}</a>

,

$post[signature]
to
{vb:raw post.signature}


And

src="$post[field5]"
to
src="{vb:raw post.field6}"





Code:

<strong></strong>
                <!-- POSTBIT SLIDE START -->
<if condition="$post['signature']">
                        <!-- sig -->

                        <!-- / sig -->

<div align="center"><a class="musername" href="member.php?{vb:raw post.userid}-{vb:raw post.musername}">{vb:raw 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>
 </ul>
<br style="clear: center" />
</div>
<div class="smallfont">
 
<!-- SLIDE 1 CONTENT -->
<div id="tab1$post[postid]" class="tabcontent">
<div class="info">                               
                                {vb:raw 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="{vb:raw 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="{vb:raw 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="{vb:raw 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="{vb:raw post.field8}" border="0"/>
</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 -->


And Updated but here is the code:

Code:

                <!-- Postbit Slide by TheLastSuperman start -->
                        <vb:if condition="$post['signature']">
                        <blockquote class="signature restore">
<div align="center"><a class="musername" href="member.php?u={vb:raw post.userid}">{vb:raw post.username}</a>'s Signature Showcase
<br />
<div id="postbittabspost{vb:raw post.postid}" class="smanslide">
 <ul>
<li><span title="View Tab 1"><a href="#" rel="tab1post{vb:raw post.postid}" id="selectedpost{vb:raw post.postid}"> </a></span></li>
<li><span title="View Tab 2"><a href="#" rel="tab2post{vb:raw post.postid}"> </a></span></li>
<li><span title="View Tab 3"><a href="#" rel="tab3post{vb:raw post.postid}"> </a></span></li>
<li><span title="View Tab 4"><a href="#" rel="tab4post{vb:raw post.postid}"> </a></span></li>
<li><span title="View Tab 5"><a href="#" rel="tab5post{vb:raw post.postid}"> </a></span></li>
 </ul>
<br style="clear: center" />
</div>
<div class="smallfont">
 
<!-- SLIDE 1 CONTENT -->
<div id="tab1post{vb:raw post.postid}" class="tabcontent">
<div class="info">                               
<div class="signaturecontainer">
{vb:raw post.signature}
</div>
</div>
</div>
 
<!-- SLIDE 2 CONTENT -->
<div id="tab2post{vb:raw post.postid}" class="tabcontent">
 <div class="info">                               
<img alt="My 2nd Sig Pic" border="0" src="{vb:raw post.field5}" border="0"/>
</div>
</div>
 
<!-- SLIDE 3 CONTENT -->
<div id="tab3post{vb:raw post.postid}" class="tabcontent">
 <div class="info">
<img alt="My 3rd Sig Pic" border="0" src="{vb:raw post.field6}" border="0"/>
</div>
</div>
 
<!-- SLIDE 4 CONTENT -->
<div id="tab4post{vb:raw post.postid}" class="tabcontent">
<div class="info">
<img alt="My 4th Sig Pic" border="0" src="{vb:raw post.field7}" border="0"/>
</div>
</div>
 
<!-- SLIDE 5 CONTENT -->
<div id="tab5post{vb:raw post.postid}" class="tabcontent">
<div class="info">
<img alt="My 5th Sig Pic" border="0" src="{vb:raw post.field8}" border="0"/>
</div>
</div>

</div>
 
<script type="text/javascript">
var mytabs=new ddtabcontent("postbittabspost{vb:raw post.postid}")
mytabs.setpersist(false)
mytabs.setselectedClassTarget("link")
mytabs.init()
</script> 
</div>
</blockquote>
                        </vb:if>
            <!-- Postbit Slide by TheLastSuperman end -->


COL NIL SATIS 01-08-2010 04:17 PM

This is cool..will definately be using this!!! great mod superman:D

ProFifaLeagues 01-10-2010 06:57 AM

Thank you Mike Another Superb Mod.
My Members love this one.

TheLastSuperman 01-11-2010 04:52 PM

Quote:

Originally Posted by rammieone (Post 1951731)
Thank you Mike Another Superb Mod.
My Members love this one.

I'll be in later to see about the other mod that is causing an issue, I need to know what new mod you have installed that is hindering the Sig showcase mod then I can post for others the fix or the info that "hey this will not work if you have this other mod installed" etc.

Mike

COL NIL SATIS 01-23-2010 03:58 PM

Quote:

Originally Posted by TheLastSuperman (Post 1952892)
I'll be in later to see about the other mod that is causing an issue, I need to know what new mod you have installed that is hindering the Sig showcase mod then I can post for others the fix or the info that "hey this will not work if you have this other mod installed" etc.

Mike

Mike when you get a chance will you come over and check out whats making this not work...me and rammie have bot looked but cant find the issue..cheers Col ;)

TheLastSuperman 01-26-2010 12:25 AM

Quote:

Originally Posted by COL NIL SATIS (Post 1964503)
Mike when you get a chance will you come over and check out whats making this not work...me and rammie have bot looked but cant find the issue..cheers Col ;)

O.o I became side tracked with paid requests and work that I completely forgot to come back and check for you guys I'm sorry... let me finish up what I came on here to do i.e. find lol and I'll have a look first thing tomorrow... It has to be one of the mods you installed around that same time but if we have to I'll simply remove it and place the signature song I put in your version in your members profiles so everyone will have a nice little profile song ;).

Mike


All times are GMT. The time now is 11:29 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01152 seconds
  • Memory Usage 1,809KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete