vBadvanced Forums  
Go Back   vBadvanced Forums > vBadvanced Products > vBadvanced CMPS > Add-On Modules & Modifications > vBa CMPS v3.x & 2.x > Add-On Modules (version 3.x & 2.x)

Reply
 
Thread Tools Display Modes
  #21  
Old 09-19-2008, 08:57 AM
Frogger Frogger is offline
Junior Member
 
Join Date: Oct 2006
Posts: 28
Default

With some help from a friend I have been able to add the forum names to the tabrecentthreadsexp.php
(The file attached got Forum names and thread marking).
My only problem now is that I am using fancy URL's from vbseo so the links from the forum names gives me a 404 error.

The script gives forumnames like this:

Code:
www.my_site.com/forums/forumdisplay.php?f=18
For me the url should look like this:

Code:
www.my_site.com/forum/ogler/
The file works perfectly if you are using a forum without VBseo/Fancy URLs
Attached Files
File Type: php tabrecentthreadsexp.php (9.7 KB, 56 views)
Reply With Quote
  #22  
Old 09-19-2008, 09:21 AM
Frogger Frogger is offline
Junior Member
 
Join Date: Oct 2006
Posts: 28
Default

I just found the error with the URL's
my forum are installed in /forum/ folder not /forums/ as in the file.. when i changed that everything works perfectly

So if you got any problem with the url change forums to forum or visa versa in this line (marked red):

Code:
 <a href= "/forums/forumdisplay.php?f=' . $thread[forumid] . '">' . $thread[forumtitle] . '</a></td>';
Reply With Quote
  #23  
Old 09-19-2008, 11:45 AM
bobster65 bobster65 is offline
Senior Member
 
Join Date: Mar 2006
Posts: 587
Default

Quote:
Originally Posted by Frogger View Post
Is it possible to add forum title into tabrecentthreadsexp2.php

In the 2.0 release there were one version with the forum titles, but with no forum marking, and one version with the forum marking but without the forum titles.
I got a big wish to have both features in one release
yes, I still pull the required info, just didn't echo it out for that specific example..

this is a TD that will do that for you..

Code:
echo '<td align="center" class="alt2 smallfont" width="20%"><a href="/forum/forumdisplay.php?f=' . $thread[forumid] . '">' . $thread[forumtitle] . '</a></td>';
__________________
Bob
Custom vBa & vB Mods, Installs, Configuration, DBA etc...If you need professional assistance, please feel free to PM me

My Mods:
[AJAX] Tabs - v3.0 (YUI) | [AJAX] Tabs - v2.0 Enhanced | [AJAX] Tabs - v2.0 | [AJAX] Tabs - v1.0
Reply With Quote
  #24  
Old 09-19-2008, 06:50 PM
CFodder CFodder is offline
Member
 
Join Date: Apr 2008
Posts: 72
Default

Would it be possible to have vertical tabs along a side as below?

___
| |N |
| |E |
| |W|
| |S |
| |--
| |U |
| |S |
| |E |
| |R |
| |--
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
---
Reply With Quote
  #25  
Old 09-19-2008, 08:45 PM
bobster65 bobster65 is offline
Senior Member
 
Join Date: Mar 2006
Posts: 587
Default

Quote:
Originally Posted by CFodder View Post
Would it be possible to have vertical tabs along a side as below?

___
| |N |
| |E |
| |W|
| |S |
| |--
| |U |
| |S |
| |E |
| |R |
| |--
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
---
Yes, that is something I am working on next...
__________________
Bob
Custom vBa & vB Mods, Installs, Configuration, DBA etc...If you need professional assistance, please feel free to PM me

My Mods:
[AJAX] Tabs - v3.0 (YUI) | [AJAX] Tabs - v2.0 Enhanced | [AJAX] Tabs - v2.0 | [AJAX] Tabs - v1.0
Reply With Quote
  #26  
Old 09-20-2008, 12:02 AM
glorify's Avatar
glorify glorify is offline
Senior Member
 
Join Date: Jun 2005
Posts: 201
Default

So Bob, this looks great. Why should I convert from AJAX Tabs. That has worked so well for me and I don't know if I should mess with an update if there is little need.
__________________
Reply With Quote
  #27  
Old 09-20-2008, 12:49 AM
CFodder CFodder is offline
Member
 
Join Date: Apr 2008
Posts: 72
Default

Quote:
Originally Posted by bobster65 View Post
Yes, that is something I am working on next...
Sweeeet, luv ya work Bob
Reply With Quote
  #28  
Old 09-20-2008, 12:54 AM
KW802's Avatar
KW802 KW802 is offline
Administrator
 
Join Date: Mar 2004
Location: A galaxy far, far away...
Posts: 5,030
Default

Quote:
Originally Posted by glorify View Post
So Bob, this looks great. Why should I convert from AJAX Tabs. That has worked so well for me and I don't know if I should mess with an update if there is little need.
Bob can (and hopefully will) correct me if I'm wrong, but I think the *big* change is the JavaScript library has been changed to the YUI library instead of the one from DynamicDrive.
__________________
Sci-Fi | Walking Dead Forum
Reply With Quote
  #29  
Old 09-20-2008, 02:23 AM
bobster65 bobster65 is offline
Senior Member
 
Join Date: Mar 2006
Posts: 587
Default

Quote:
Originally Posted by glorify View Post
So Bob, this looks great. Why should I convert from AJAX Tabs. That has worked so well for me and I don't know if I should mess with an update if there is little need.
why? YUI is a much better JS Library and is the JS Library of choice for vB. One of the components of the YUI Library is the TabView.js which is a much more robust tabbing system then the Dynamic Drive tabbing system. Speed alone is a great improvement and I've only just touched on the basics, so there is a TON more coming down the road..

You don't need to convert, but its a simple conversion.

Quote:
Originally Posted by KW802 View Post
Bob can (and hopefully will) correct me if I'm wrong, but I think the *big* change is the JavaScript library has been changed to the YUI library instead of the one from DynamicDrive.
Correct
__________________
Bob
Custom vBa & vB Mods, Installs, Configuration, DBA etc...If you need professional assistance, please feel free to PM me

My Mods:
[AJAX] Tabs - v3.0 (YUI) | [AJAX] Tabs - v2.0 Enhanced | [AJAX] Tabs - v2.0 | [AJAX] Tabs - v1.0
Reply With Quote
  #30  
Old 09-20-2008, 11:31 AM
Frogger Frogger is offline
Junior Member
 
Join Date: Oct 2006
Posts: 28
Default

hmm My tabs fails in Internet Explorer.. Nothing shows up
http://www.reptilfreaks.no
Anyone got any suggestions hoe I can make it work for IE users?
Reply With Quote
  #31  
Old 09-20-2008, 11:44 AM
bobster65 bobster65 is offline
Senior Member
 
Join Date: Mar 2006
Posts: 587
Default

looks like you made some modifications to the CSS (the rounded corners for example are gone).. what exact changes did you make? That could effect the output by IE..
__________________
Bob
Custom vBa & vB Mods, Installs, Configuration, DBA etc...If you need professional assistance, please feel free to PM me

My Mods:
[AJAX] Tabs - v3.0 (YUI) | [AJAX] Tabs - v2.0 Enhanced | [AJAX] Tabs - v2.0 | [AJAX] Tabs - v1.0
Reply With Quote
  #32  
Old 09-20-2008, 11:49 AM
bobster65 bobster65 is offline
Senior Member
 
Join Date: Mar 2006
Posts: 587
Default

Quote:
Originally Posted by Frogger View Post
hmm My tabs fails in Internet Explorer.. Nothing shows up
http://www.reptilfreaks.no
Anyone got any suggestions hoe I can make it work for IE users?
also, just to try it (dunno if vbseo effects it or not with YUI)..

in the data source elements of each tab.. ie dataSrc: 'tab-reptilfreaks.php' try the full URL to the file to see if that fixes the IE issue....

dataSrc: 'http://www.reptilfreaks.no/forum/tab-reptilfreaks.php'
__________________
Bob
Custom vBa & vB Mods, Installs, Configuration, DBA etc...If you need professional assistance, please feel free to PM me

My Mods:
[AJAX] Tabs - v3.0 (YUI) | [AJAX] Tabs - v2.0 Enhanced | [AJAX] Tabs - v2.0 | [AJAX] Tabs - v1.0
Reply With Quote
  #33  
Old 09-20-2008, 08:45 PM
Frogger Frogger is offline
Junior Member
 
Join Date: Oct 2006
Posts: 28
Default

Quote:
Originally Posted by bobster65 View Post
looks like you made some modifications to the CSS (the rounded corners for example are gone).. what exact changes did you make? That could effect the output by IE..
Yes I tried something out that did'nt work, probably when you checked my site. Only difference in the CSS compared to the original are the colours.

Quote:
Originally Posted by bobster65 View Post
also, just to try it (dunno if vbseo effects it or not with YUI)..

in the data source elements of each tab.. ie dataSrc: 'tab-reptilfreaks.php' try the full URL to the file to see if that fixes the IE issue....

dataSrc: 'http://www.reptilfreaks.no/forum/tab-reptilfreaks.php'
It did´t work unfortionately..
I have also tried to changing my modified tab file with the one in the package - tabrecentthreadsexp2.php without any luck..
Reply With Quote
  #34  
Old 09-21-2008, 11:22 AM
bobster65 bobster65 is offline
Senior Member
 
Join Date: Mar 2006
Posts: 587
Default

Quote:
Originally Posted by Frogger View Post
Yes I tried something out that did'nt work, probably when you checked my site. Only difference in the CSS compared to the original are the colours.

It did´t work unfortionately..
I have also tried to changing my modified tab file with the one in the package - tabrecentthreadsexp2.php without any luck..
I hate IE! I have it running on multiple sites and they all work fine with IE... my next "guess" would be that something on your page is conflicting with it, but its not producing any errors.... the source looks fine and its printing the tabs, just not the content.. can you try a simple HTML content file and see if it pulls up?
__________________
Bob
Custom vBa & vB Mods, Installs, Configuration, DBA etc...If you need professional assistance, please feel free to PM me

My Mods:
[AJAX] Tabs - v3.0 (YUI) | [AJAX] Tabs - v2.0 Enhanced | [AJAX] Tabs - v2.0 | [AJAX] Tabs - v1.0
Reply With Quote
  #35  
Old 09-21-2008, 10:47 PM
glorify's Avatar
glorify glorify is offline
Senior Member
 
Join Date: Jun 2005
Posts: 201
Default

Bob-o.

I am this close to upgrading, but it would take me doing two sets of tabs. Two questions. First, can I use the same css as the Ajax Tabs mod?

Second, I am working on some integration of a Digg clone into vbadvanced and wondered if the YUI tabs would load the iframes faster.

Check the page here.
__________________
Reply With Quote
  #36  
Old 09-22-2008, 10:02 AM
bobster65 bobster65 is offline
Senior Member
 
Join Date: Mar 2006
Posts: 587
Default

Quote:
Originally Posted by glorify View Post
Bob-o.

I am this close to upgrading, but it would take me doing two sets of tabs. Two questions. First, can I use the same css as the Ajax Tabs mod?

Second, I am working on some integration of a Digg clone into vbadvanced and wondered if the YUI tabs would load the iframes faster.

Check the page here.
No, you can not use the OLD CSS... its not even CLOSE to being the same. The NEW CSS is easy to update tho.

YUI is faster loading and doesn't require IFRAMEing (since I am using DISPATCHER, it can handle external JS)
__________________
Bob
Custom vBa & vB Mods, Installs, Configuration, DBA etc...If you need professional assistance, please feel free to PM me

My Mods:
[AJAX] Tabs - v3.0 (YUI) | [AJAX] Tabs - v2.0 Enhanced | [AJAX] Tabs - v2.0 | [AJAX] Tabs - v1.0
Reply With Quote
  #37  
Old 09-23-2008, 03:46 PM
sgrynd sgrynd is offline
Junior Member
 
Join Date: Sep 2006
Posts: 1
Default

This works great, however I am curious if there is a way to make it slideshow between the tabs like in 2.0. Sorry if I am missing some obvious, but I didn't see where that would go in 3.0.
Reply With Quote
  #38  
Old 09-23-2008, 05:32 PM
bobster65 bobster65 is offline
Senior Member
 
Join Date: Mar 2006
Posts: 587
Default

Quote:
Originally Posted by sgrynd View Post
This works great, however I am curious if there is a way to make it slideshow between the tabs like in 2.0. Sorry if I am missing some obvious, but I didn't see where that would go in 3.0.
Unfortunately, default YUI TabView doesn't have the slideshow capabilities (YET).. Im told that it will be supported in YUI version 3.0 .. there IS however a way to do it, but its not supported by YUI, so I have not released it public.
__________________
Bob
Custom vBa & vB Mods, Installs, Configuration, DBA etc...If you need professional assistance, please feel free to PM me

My Mods:
[AJAX] Tabs - v3.0 (YUI) | [AJAX] Tabs - v2.0 Enhanced | [AJAX] Tabs - v2.0 | [AJAX] Tabs - v1.0
Reply With Quote
  #39  
Old 09-23-2008, 05:42 PM
bobster65 bobster65 is offline
Senior Member
 
Join Date: Mar 2006
Posts: 587
Default

*** 3 New Content files added to post #3 ***
__________________
Bob
Custom vBa & vB Mods, Installs, Configuration, DBA etc...If you need professional assistance, please feel free to PM me

My Mods:
[AJAX] Tabs - v3.0 (YUI) | [AJAX] Tabs - v2.0 Enhanced | [AJAX] Tabs - v2.0 | [AJAX] Tabs - v1.0
Reply With Quote
  #40  
Old 09-23-2008, 06:38 PM
Magz Magz is offline
Member
 
Join Date: Nov 2006
Posts: 38
Default

Quote:
Originally Posted by Nordinho View Post

Btw adding width and height attributes to the attachment and a valign="top" give a more streamlined look (imo)

Attachment 4755
Could you explain how to do this bob ?

Thanks
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
AJAX Tabs Content Script v2.0 enhanced bobster65 Add-On Modules (version 3.x & 2.x) 568 07-01-2010 12:05 PM
Slideshow and AJAX Tabs glorify Show off your vBadvanced! 5 04-27-2009 07:07 PM
AJAX Tabs not rendering correct on Opera browser glennybee Module & Modification Discussion & Requests 5 03-13-2008 04:26 PM
AJAX Tabbed Content Module bobster65 Add-On Modules (version 3.x & 2.x) 39 09-11-2007 12:47 PM
Online Users Module (AJAX version)? ERuiz Module & Modification Discussion & Requests 1 07-05-2007 12:54 AM


All times are GMT -4. The time now is 09:35 AM.

Forums Powered by vBulletin, Copyright ©2000-2009, Jelsoft Enterprises Ltd.
Please note that vBadvanced is in no way affiliated with Jelsoft Enterprises Ltd, nor will Jelsoft be able to provide any support for our products.