vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Add-On Releases - AJAX Tabs Content Script v2 (https://vborg.vbsupport.ru/showthread.php?t=161197)

valdet 11-23-2007 09:34 AM

This is such a great addition to navigation.

In order to spice it up even more, can someone guide us through how to make these tabs show different forum categories.

Example: http://www.namepros.com

Regards.

bobster65 11-23-2007 03:21 PM

Quote:

Originally Posted by valdet (Post 1387976)
This is such a great addition to navigation.

In order to spice it up even more, can someone guide us through how to make these tabs show different forum categories.

Example: http://www.namepros.com

Regards.

I just coded that (what namepros did) for another member last week ( BBWForums.net ) check out his site and see if its what you are after..

Bob

bobster65 11-23-2007 03:37 PM

Quote:

Originally Posted by NolF (Post 1387818)
Damn this thing is great :) been playing with it for he last day or so. It's so damn great in every aspect :)

I got one problem, I don't seem to be able to use $thread[preview] code :( I use it but returns and empty result where it should give a preview of the threads content :(
<a href=... title="' . $thread[preview] . '"

if anyone can help me wioth that it would be great ^^

Note: I'm using kenmeth's enhancement

make sure in the query string that post.pagetext AS preview is part of it...

PHP Code:

SELECT $rtrating_fields thread.threadidthread.titlethread.replycountpostusernamepostuseridthread.dateline AS postdateline, IF(views <= thread.replycountthread.replycount+1views) AS viewsthread.lastposterthread.lastpostthread.lastpostidpollidthread.forumidthread.openstickypost.pagetext AS preview 


glorify 11-23-2007 11:39 PM

Wanted to stop here, click install, thank bob, and share the threadsexternal I am using to this point.

I've attached screens of both of my styles as well. Very stock vba looking. You can peek at my demo if you want.

bobster65 11-24-2007 12:28 PM

Quote:

Originally Posted by glorify (Post 1388366)
Wanted to stop here, click install, thank bob, and share the threadsexternal I am using to this point.

I've attached screens of both of my styles as well. You can peek at my demo if you want.

Turned out awesome Bud! You have one of the nicest vb sites period!

glorify 11-25-2007 02:02 PM

Thanks man. And anyone who gives this mod less tha 5 stars needs to have their head checked ;)

glorify 11-25-2007 07:55 PM

For anyone that likes the default vb look of your table header, here is the way I did it.

Step 1:
Keep a back up of your adv_portal_Tab_Block_Main template, and ajaxtabs.css

Step 2:
https://vborg.vbsupport.ru/attachmen...6&d=1195957216

https://vborg.vbsupport.ru/attachmen...7&d=1195957216

Figure out the way you want the header to look. In the first image, I used the default gradient_tcat and gradient_thead gifs. In the second I used the standard gradient_tcat gif, then turned it upside down and renamed it to gradient_thead.gif. Figure out what you want, then upload the two images to your ajaxtabs folder.

Step 3:
Here is my adv_portal_Tab_Block_Main. The red is what you HAVE to change, the blue matches my css, but if you change the width anywhere, you'll have to edit it.
Code:

<tr><td>
<head>
<link rel="stylesheet" type="text/css" href="http://www.XXXX.com/forums/ajaxtabs/ajaxtabs.css" />
<script type="text/javascript" src="http://www.XXXX.com/forums/ajaxtabs/ajaxtabs.js">
/***********************************************
* Ajax Tabs Content script- ? 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
***********************************************/
* Ajax Tabs Content script- ? 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>
</head>
<body>

<div id="tabs" class="indentmenu">
<ul>
<li><a href="http://www.XXXX.com/forums/tabexternal.php" rel="tabcontainer" class="selected"><strong>&raquo; Tab1</strong></a></li>
<li><a href="http://www.XXXX.com/forums/tabexternal2.php" rel="tabcontainer"><strong>&raquo; Tab2</strong></a></li>
<li><a href="http://www.XXXX.com/forums/tabexternal3.php" rel="tabcontainer"><strong>&raquo; Tab3</strong></a></li>
<li><a href="http://www.XXXX.com/forums/tabexternal4.php" rel="tabcontainer"><strong>&raquo; Tab4</strong></a></li>
</ul>
<br style="clear: left" />
</div>

<div id="divcontainer" style="border:1px solid #003366; border-top: none; width:99.75%; height: 573px;  margin-bottom:1em">
</div>


<script type="text/javascript">

var mytabs=new ddajaxtabs("tabs", "divcontainer")
mytabs.setpersist(false)
mytabs.setselectedClassTarget("link")
mytabs.init()


</script>
</body>
</td></tr>

Step 4:
Next up is the indented portion of my css. Replace the Indented portion of your ajaxtabs.css with the edited AFTER YOUR CHANGES below.

The red are the values to change to match your site. The blue are optional width, that if you change you HAVE to change to match in your adv_portal_Tab_Block_Main template. I have put comments in green so it's easy to know where you can find these settings in your admincp to match your site (because I hate trying to figure out css).

Code:

/* ######### CSS for Indented CSS Tabs. Remove if not using ######### */


.indentmenu{
font: 10px Arial;
width: 100%;
}

.indentmenu ul{
margin: 0;
padding: 0;
float: left;
width: 99.75%; /*used in conjunction with width variable in adv_portal_Tab_Block_Main*/
border: 1px solid #003366; /*AdminCP=>Styles & Templates=>Style Manager=>All Style Options=>Table Border: Background of your table*/
border-bottom: none;
background: #05173D; /*AdminCP=>Styles & Templates=>Style Manager=>All Style Options=>Page Background: Background of your table*/
}

.indentmenu ul li{
display: inline;
}

.indentmenu ul li a{
float: left;
color: #ffcc00; /*AdminCP=>Styles & Templates=>Style Manager=>All Style Options=>Category Strips: Font Color of your Category Strips*/
padding: 2px 13px; /*Edit the 13px if you want to pad the cells wider or slimmer*/
font-size: 8pt;
padding-top: 6px; /*shift text down 1px*/
padding-bottom: 6px;
text-decoration: none;
background: #003366  url(http://www.XXXX.com/forums/ajaxtabs/gradient_tcat.gif) repeat-x top left; /*AdminCP=>Styles & Templates=>Style Manager=>All Style Options=>Category Strips: Background Color and Image Name of your Category Strips*/
}

.indentmenu ul li a:visited{
color: #ffcc00; /*AdminCP=>Styles & Templates=>Style Manager=>All Style Options=>Category Strips: Font Color of your Category Strips*/
}

.indentmenu ul li a:hover{
color: #ffcc00  !important; /*AdminCP=>Styles & Templates=>Style Manager=>All Style Options=>Category Strips: Font Color of your Category Strips*/
padding-top: 7px; /*shift text down 1px*/
padding-bottom: 5px;
background: #05173D url(http://www.XXXX.com/forums/ajaxtabs/gradient_thead.gif) repeat-x top left; /*AdminCP=>Styles & Templates=>Style Manager=>All Style Options=>Table Header: Background Color and Image Name of your Table Header*/
}

.indentmenu ul li a.selected{
color: #ffcc00  !important; /*AdminCP=>Styles & Templates=>Style Manager=>All Style Options=>Category Strips: Font Color of your Category Strips*/
padding-top: 7px; /*shift text down 1px*/
padding-bottom: 5px;
background: #05173D url(http://www.XXXX.com/forums/ajaxtabs/gradient_thead.gif) repeat-x top left; /*AdminCP=>Styles & Templates=>Style Manager=>All Style Options=>Table Header: Background Color and Image Name of your Table Header*/

Step 5 (Optional if using for recent threads):
Use the tabexternal attached.

bobster65 11-25-2007 08:00 PM

Cool, Thanks for Sharing Bud :) btw, my Raiders beat the chiefs @ arrowhead :)

glorify 11-25-2007 08:51 PM

I see that. Thanks for taking care of our light work ;)

valdet 11-26-2007 07:09 AM

Quote:

Originally Posted by bobster65 (Post 1388110)
I just coded that (what namepros did) for another member last week ( BBWForums.net ) check out his site and see if its what you are after..

Bob

Bobster, that is exactly what I am interested in achieving. Mind that I don't have vBAdvanced, so this should work for forum only.

Thanks for your time and I look forward to your reply.

Best regards,
Val.

DarthCoder 11-26-2007 12:18 PM

thanks nice

bobster65 11-26-2007 12:54 PM

Quote:

Originally Posted by valdet (Post 1389512)
Bobster, that is exactly what I am interested in achieving. Mind that I don't have vBAdvanced, so this should work for forum only.

Thanks for your time and I look forward to your reply.

Best regards,
Val.

Yes, what we are both talking about has nothing to do with this mod... its totally different, not even close to the same setup ... Shoot me a PM with a link to your site and what you are interested in breaking out (forum wise)... more styles=more time as each template MIGHT have to be done a little different (not always the case).. anyway, shoot me a PM to discuss outside of this Mod...

thanks Bob

NolF 11-27-2007 10:58 AM

Thx glorify the code works like a charm ^^

Does anyone know how could i sort the "news" in descending order? As in newest threads first? It is rather unpredictable to have it sorted out by latests post :( ^^

Thx guys

PS here is a my version demo (spanish I know) it's only a beta till I get everything I want it to have on the final release ^^

Love this thing :P looks so slick and profesional ^^

bobster65 11-27-2007 01:40 PM

Quote:

Originally Posted by NolF (Post 1390219)
Does anyone know how could i sort the "news" in descending order? As in newest threads first? It is rather unpredictable to have it sorted out by latests post :( ^^

PS here is a my version demo (spanish I know) it's only a beta till I get everything I want it to have on the final release ^^

Love this thing :P looks so slick and profesional ^^

instead of ordering by 'lastpost' use 'thread.dateline' the sort order is already defaulted at descending..

Looks great on your site so far.. can't wait to see the final product :cool:

glorify 11-27-2007 02:58 PM

Quote:

Originally Posted by NolF (Post 1390219)
Thx glorify the code works like a charm ^^

Great :)

Mr. Boo 11-27-2007 10:42 PM

This is awesome, im having a little trouble and was wondering if anyone could help. I have set everything up and when i click on one of teh tabs it opens up a new window with the tabbed content and the original page dosnt update. When i load the page i always get the "congrats ajax is working correct" thing popup instead of the default tab. Have i missed something?

bobster65 11-27-2007 10:54 PM

Quote:

Originally Posted by Mr. Boo (Post 1390661)
This is awesome, im having a little trouble and was wondering if anyone could help. I have set everything up and when i click on one of teh tabs it opens up a new window with the tabbed content and the original page dosnt update. When i load the page i always get the "congrats ajax is working correct" thing popup instead of the default tab. Have i missed something?

Double check all the steps again. The last time I saw this, the member didn't do the CSS step correctly.

Mr. Boo 11-27-2007 11:10 PM

Thanks for the speedy reply. I think I have checked all the css steps... double checked the path to the css file and deleted the css code for the other layout styles. I can only see one change to make in the actual css file to the shade.gif etc

bobster65 11-27-2007 11:23 PM

Quote:

Originally Posted by Mr. Boo (Post 1390674)
Thanks for the speedy reply. I think I have checked all the css steps... double checked the path to the css file and deleted the css code for the other layout styles. I can only see one change to make in the actual css file to the shade.gif etc

Do you have a link to the site so I can check it out? The only thing that comes to mind is that the path to the CSS file within the Template is wrong (That will cause problems like you are describing as well)...

Mr. Boo 11-27-2007 11:30 PM

Quote:

Originally Posted by bobster65 (Post 1390679)
Do you have a link to the site so I can check it out? The only thing that comes to mind is that the path to the CSS file within the Template is wrong (That will cause problems like you are describing as well)...

I got it thanks, I had the old tabs_block_main template. Changed that and its working fine again now :) Thanks for your help :)

bobster65 11-27-2007 11:34 PM

Quote:

Originally Posted by Mr. Boo (Post 1390682)
I got it thanks, I had the old tabs_block_main template. Changed that and its working fine again now :) Thanks for your help :)

No Problem... when you get time, click install ;) :cool:

ZiG 11-29-2007 11:45 PM

hey, im not excellent at hard coding PHP so could I get a little bit of assistance in preparing a tabexternal.php for a specific GARs module I am trying to put together to work with this script. basically what this module does is pull the latest defined amount of stories you want pulled from a specific GARs forum, and displays it similarly to how recent threads are displayed in the recent thread tabexternal.php. the only difference is that there is a GARs header_image that is pulled, and also a byline that are taken from different sql tables (gars g sql tables, not thread tables). if any of you use GARs, you should have an idea of what i'm talking about.

here is the GARs module code i am trying to plug into your ajax tabs script:

Code:

<?php

        //SETTINGS

    $forumids = "20";                  //      Comma seperated list of forumids
    $limit = 5;                        //      How many items to show
    $title = "News";                        //        Module Title
    $featured = 0;              //      1= Only featured items
    $url_to_default_image = "types/3/default.jpg"; //Relative URL to default image from geek/gars/images/ folder
    $vertical = 1;                      //      1= Vertical (only for template 1 or 3)
    $preview = 1;                      //      1= Show preview
    $ratings = 0;                      //      1=show ratings
    $template = 2;              //      1=simple with pic, 2=big with pic, 3=Listing no pic
    $order = 1;                //      0 = rand, 1=desc, 2=asc
    $maxchars = 400;                    //  Maximum amount of chards to snip
    $customfields = false;                // Set to true to grab the custom fields.
    $parsebb = true;                        //set to true to parse preview

    // END SETTINGS

    switch ($order)
    {
        case 0:
                $order = "RAND()"; break;
        case 1:
                $order = "g.threadid DESC"; break;
        default:
                $order = "g.threadid ASC";
    }
    if (!$limit)
    {
        $limit = "1";
    }


        $sql = "SELECT g.threadid,g.header_image image, p.title, g.byline, t.forumid, t.dateline, t.postuserid, t.postusername " .
                ($preview ? ", IF(g.synopsis, g.synopsis, p.pagetext) synopsis " : "") .
                ($ratings ? ",round((g.overall_rating/10),0) author_rating, g.overall_rating author_rating_percent,round((g.avg_rating/10),0) member_rating, g.avg_rating member_rating_percent " : "" ) .
            ",g.pagecount, g.custom2 " . ($customfields ? ",gcv.*" : "") . " FROM
            " . TABLE_PREFIX . "gars g
            " . ($customfields ? " INNER JOIN " . TABLE_PREFIX . "gars_custom_values gcv ON gcv.custom_threadid = g.threadid " : "") . "
                        INNER JOIN " . TABLE_PREFIX . "thread t ON g.threadid = t.threadid
            INNER JOIN " . TABLE_PREFIX . "post p ON t.firstpostid = p.postid
            WHERE t.visible = 1 AND t.open != 10
            " . ($forumids ? " AND t.forumid in ($forumids) " : "" ) . "
            " . ($featured ? " AND g.feature_untill> " . TIMENOW : "") . "
            ORDER BY $order LIMIT $limit";

        $results = $db->query_read($sql);
    $modulehtml = "";
    $x = 0;
    $bburl = $vbulletin->options['bburl'];
    if ($template==2)
    {
        $vertical = 1;
    }

    $mods['colspan'] = ($template==2 ? 3 : $x);
    $mods['collapse'] = $mods['modid'];
    $modcollapse = $vbcollapse["collapseobj_module_" . $mods['modid'] . ""];
    $modimgcollapse = $vbcollapse["collapseimg_module_" . $mods['modid'] . ""];

    while ($result = $db->fetch_array($results))
    {

        if (!$result['image'])
        {
            $result['image'] = $vbulletin->options['bburl'] . "/geek/gars/images/" . $url_to_default_image;
        }
        elseif (substr($result['image'], 0, 1) == ".")
        {
            $result['image'] = $vbulletin->options['bburl'] . substr($result['image'], 1);
        }
        else
        {
            $result['image'] = $vbulletin->options['bburl'] . $result['image'];
        }

        if ($parsebb && $template!=3)
        {
            $result['message'] = $bbcode_parser->do_parse($result['synopsis'], 0, 1, 1, 1);
        }
        else
        {
            $result['message'] = strip_bbcode($result['synopsis']);
        }

        if (strlen($result['message']) > $maxchars)
        {
            $result['message'] = substr($result['message'], 0, strrpos(substr($result['message'], 0, $maxchars), ' ')) . '...' . ($template!=3 ? construct_phrase($vbphrase['read_more'], $vbulletin->options['bburl'], $result['threadid'], $session['sessionurl']) : "");
        }

        $result['dateposted'] = vbdate($vbulletin->options['dateformat'], $result['dateline']);

        eval('$bits = "' . fetch_template('adv_portal_gars_bit' . $template) . '";');

        if ($vertical && ($template != 2))
        {
            $modulehtml .= "<tr>$bits</tr>";
        }
        elseif ($vertical && $template == 2)
        {
                $mods['title'] = "<a href=\"$bburl/showthread.php?t=$result[threadid]\">$result[title]</a>";
                $modulehtml = $bits;
                eval('$home[$mods[\'modid\']][\'content\'] .= "' . fetch_template('adv_portal_module_shell') . '";');
        }
        else
        {
            $modulehtml .= $bits;
            $x++;
        }


    }
    if ($modulehtml && ($template != 2))
    {
        if (!$vertical)
        {
                $modulehtml = "<tr>$modulehtml</tr>";
        }
        $home[$mods['modid']]['content'] .= $modulehtml;
    }
    elseif ($modulehtml && $template == 2)
    {
        $mods['noshell'] = true;
    }


?>

This is actually a CMPS module file, intended to be used with vBa CMPS, plugged in via the CMPS module system. you can find the actual module file and more information on the module here:

http://www.thevbgeek.com/showthread.php?t=1439

You can see the module running right on my webpage, underneath the News & Press Releases block, over at:

http://www.ready-up.com

Please help me to get this module running within the ajax tabs, I think it would be a great addition to this script as a lot of people use GARs. I tried myself to get it working, and I will continue trying on my own but like I've said i'm not so great at hardcoding PHP so i'm posting here in hope of getting a little bit of assistance. if i do happen to get this working, i will post the tabexternal php files for everyone else to use.

thanks in advance to anyone who helps out

glorify 11-30-2007 01:02 AM

Don't have experience with Gars. Your site rocks btw :)

ZiG 11-30-2007 01:48 AM

thanks man, so does yours

------------------------------

**UPDATE

I actually got it working on my own i'll post the files soon...you can see it running on my site right now for the news articles. im going to try to make one for the gallery also...

Maddogz420 01-03-2008 11:20 PM

Had a problem, fixed it. Just misread the instructions..


Great hack, installed!


Okay, now we have this...

Quote:

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /includes/vba_cmps_include_template.php on line 47
http://www.mischiefsociety.com/vb/cm...e=testhomepage


But it doesnt matter, im using html pages anyways....

bobster65 01-03-2008 11:29 PM

Quote:

Originally Posted by Maddogz420 (Post 1414995)
http://www.mischiefsociety.com/vb/cm...e=testhomepage

Having some trouble with this... Ive gone thru the instructions a thousand times now and just gotta ask... how'd i fudge this one up?

I've seen this issue before (you are not the first).... trying to remember exactly what the cause was... I know its something simple..... I'm sure I will remember what the solution is in a few and THIS time I will write it down and add it to the troubleshooting guide lol.. sorry that you are having problems installing it.. we'll get ya hooked up even if I have to take a closer look at your setup.

Thanks.. Bob

EDIT: Remembered what it was... incorrect path to either the CSS or JS file or forgot to do the first few procedures in Step 5 of the instructions..

bobster65 01-03-2008 11:37 PM

Quote:

Originally Posted by Maddogz420 (Post 1414995)
Had a problem, fixed it. Just misread the instructions..

Great hack, installed!

Okay, now we have this...

http://www.mischiefsociety.com/vb/cm...e=testhomepage

Just remark that include out in the content files

Maddogz420 01-03-2008 11:51 PM

Thanks, on second thought ill be trying to get one of your php pages you packaged working.. I see you caught all my post edits, didnt think the response would be so quick !

Killer mod dude!

What i did originally was made a template page, instead of making a module then adding it to a page... doh!

bobster65 01-04-2008 12:06 AM

Quote:

Originally Posted by Maddogz420 (Post 1415010)
Thanks, on second thought ill be trying to get one of your php pages you packaged working.. I see you caught all my post edits, didnt think the response would be so quick !

Killer mod dude!

What i did originally was made a template page, instead of making a module then adding it to a page... doh!

Cool Beans... I just happened to be online when you posted :D ... and ya, just remove that include in any of the "content" files that craps out on ya.. everything else will run just fine.

Maddogz420 01-04-2008 12:23 AM

Heres a live demo if you need one (or another)

http://www.mischiefsociety.com/vb/cmps_index.php

Smecksie stuff =)

bobster65 01-04-2008 12:31 AM

Quote:

Originally Posted by Maddogz420 (Post 1415023)
Heres a live demo if you need one (or another)

http://www.mischiefsociety.com/vb/cmps_index.php

Smecksie stuff =)

:up: right on! You can do just about anything you can dream of with this thing ;)

x YNWA x 01-04-2008 02:59 AM

brilliant mod, fantastic guy to always willing to help out

mod of the moth


here is it working on my forum


www.pesforum.co.uk

bobster65 01-04-2008 12:40 PM

Quote:

Originally Posted by x YNWA x (Post 1415086)
brilliant mod, fantastic guy to always willing to help out

mod of the moth


here is it working on my forum


www.pesforum.co.uk

Thank You Buddy :) Looking great!

YzermanCpt 01-05-2008 04:32 AM

This mods is awesome just so you know. Thank you very much for sharing it.

I have everything set up, but I have one small problem. I have this black background that I can't seem to get rid of. How can I fix this?

You can see what I mean here....

http://www.aotpals.com

bobster65 01-05-2008 01:02 PM

Quote:

Originally Posted by YzermanCpt (Post 1415715)
This mods is awesome just so you know. Thank you very much for sharing it.

I have everything set up, but I have one small problem. I have this black background that I can't seem to get rid of. How can I fix this?

You can see what I mean here....

http://www.aotpals.com

That is either coming from a background set in the CSS or it could be from the CMPS wrapper (somehow).. Check the CSS and see if you have a black background setting or background image that could be doing it.

YzermanCpt 01-07-2008 12:27 AM

It was in the CMPS Wrapper. It's fixed now. Thank you for the help! ;)

ScottiG 01-11-2008 09:03 PM

Bobster, Others, Anyone?

Please pardon my newbie-like question, but well, I am a newbie. Anyway, I have downloaded this hack and I think it is going to work great for me once I configure it to the site style I am working on.

Here is my question: I am using the css text and the tabexternal.php that Glorify posted, I have changed the paths to point to my domain, but for some reason I cannot get the recent threads to display - The tabs are there, the outer border is there (in other words, the module is working) but I cannot get it to display the recent thread content.

I do (also) have the recent thread module running below it, just to make sure they were showing the same, but only the VBA recent threads displays... Any thoughts?

Where am I going wrong?

Also, on Glorify's site, there is a box that contains photos with what appears to be RSS type feeds, each photo has a text overlay that links to a full story and the ability for others to post - Is this your work also? if so, How do I go about implementing that on my site? Please advise.

Thanks in advance!

As green as they come,
Scott

bobster65 01-14-2008 07:21 PM

Quote:

Originally Posted by ScottiG (Post 1419795)
Bobster, Others, Anyone?

Please pardon my newbie-like question, but well, I am a newbie. Anyway, I have downloaded this hack and I think it is going to work great for me once I configure it to the site style I am working on.

Here is my question: I am using the css text and the tabexternal.php that Glorify posted, I have changed the paths to point to my domain, but for some reason I cannot get the recent threads to display - The tabs are there, the outer border is there (in other words, the module is working) but I cannot get it to display the recent thread content.

I do (also) have the recent thread module running below it, just to make sure they were showing the same, but only the VBA recent threads displays... Any thoughts?

Where am I going wrong?

Also, on Glorify's site, there is a box that contains photos with what appears to be RSS type feeds, each photo has a text overlay that links to a full story and the ability for others to post - Is this your work also? if so, How do I go about implementing that on my site? Please advise.

Thanks in advance!

As green as they come,
Scott

Hey Scott, I replied to you over at the VBA site.

slossetti 01-15-2008 12:10 PM

Thanks very much.

Defkalion 01-22-2008 08:34 PM

This is one of the finest, easiest and most impressive modules I have ever used on one of my VB sites.

Many thanks to the author for this release.

I have installed it and working with no problems. I will come back with lotsa questions though, look out :P

Just one for now: how can I use in one of my tabs, an already build module that I have? this module is based on the news.php VBA module, and it's showing latest threads from specific forums, but also with a specific way (tampered with the visual layout of it). Is there a way to hard-code this module inside one of my ajax tabs?

Again congrats for a great work. :)


All times are GMT. The time now is 03:51 PM.

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.01591 seconds
  • Memory Usage 1,919KB
  • 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
  • (3)bbcode_code_printable
  • (1)bbcode_php_printable
  • (19)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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