View Full Version : Forum Home Enhancements - [AJAX] Tabbed Forum Home
Pages :
1
2
3
[
4]
5
6
7
8
bobster65
09-05-2008, 09:30 PM
I just changed over IP addresses on my domain today and now my tabs aren't showing up. All I see is a bullet list of my forums. Any ideas what is causing this???
http://www.usacarry.com/forums/
i156
This would be directly related to the css file and the tabs finding it. It should be listed at the top of the forumhome template and looks something like:
<link rel="stylesheet" type="text/css" href="clientscript/tabs/ajaxtabs.css" />
Just in my opinion I would start looking from there also it may (just guessing) have something to do with cache but then I am only a back yarder in coding but it may help to get you started till the big boys offer something
yup, iBaker is correct.. check both the paths to the .ccs AND .js .. make sure your old URL isn't appended to them.
Brother Malachi
09-06-2008, 09:24 AM
Wait...is the AJAX version still crawlable?
bobster65
09-06-2008, 04:57 PM
Wait...is the AJAX version still crawlable?
Yes. Its been tested more than once is completely search engine unobtrusive. If you need to make yourself comfortable, simple create a child style and make the child style tabbed and the parent style the default..
Cheertobi
09-06-2008, 10:07 PM
Hi,
will V2.0 be able to handle this (https://vborg.vbsupport.ru/showthread.php?t=99829) module?!
Got V1.5 to work, but it does not play well together with Xenons Hack ;(
Regards,
Tobi
bobster65
09-06-2008, 11:17 PM
Hi,
will V2.0 be able to handle this (https://vborg.vbsupport.ru/showthread.php?t=99829) module?!
Got V1.5 to work, but it does not play well together with Xenons Hack ;(
Regards,
Tobi
Yes, I have it working and posted the solution to hammerhead in that thread... We've also added support for it in ver 2.0
HERE is the solution that I posted ...
How would I go about combining this with the [AJAX] tabbed forums (https://vborg.vbsupport.ru/showthread.php?t=175687) mod.
Thanks for any help.
Pretty easy actually ..
I am going to assume you already installed this and am only going to give you the changes you need to make for this to work with TFH ..
FIND THIS in (includes/functions_forumlist.php ) File
if (THIS_SCRIPT == 'index' AND $forum['subforumcolumns'] != 1 AND ($subsonly OR $depth < MAXFORUMDEPTH))
{
$childforumbits = construct_forum_columns($forum['forumid'], $forum['subforumcolumns']);
}
else if ($subsonly)
{
$childforumbits = construct_forum_bit($forum['forumid'], 1, $subsonly);
}
else if ($depth < MAXFORUMDEPTH)
{
$childforumbits = construct_forum_bit($forum['forumid'], $depth, $subsonly);
}
else
{
$childforumbits = '';
}
REPLACE with THIS (NOTE: New Code is highlighted in red ... )
if (THIS_SCRIPT == 'index' AND $forum['subforumcolumns'] != 1 AND ($subsonly OR $depth < MAXFORUMDEPTH))
{
$childforumbits = construct_forum_columns($forum['forumid'], $forum['subforumcolumns']);
}
else if (THIS_SCRIPT == 'tabforumhome' or 'index' AND $forum['subforumcolumns'] != 1 AND ($subsonly OR $depth < MAXFORUMDEPTH))
{
$childforumbits = construct_forum_columns($forum['forumid'], $forum['subforumcolumns']);
}
else if ($subsonly)
{
$childforumbits = construct_forum_bit($forum['forumid'], 1, $subsonly);
}
else if ($depth < MAXFORUMDEPTH)
{
$childforumbits = construct_forum_bit($forum['forumid'], $depth, $subsonly);
}
else
{
$childforumbits = '';
}
THEN CHECK/EDIT your forumhome_forumbit_level1_nopost Template
NOTE: You should have this step already done if you installed both properly..
NOTE: Red Highlite = TFH Code Green Highlite= Forums arranged in columns on forumhome Code Black Code = Default vB (yours might be slightly different if you have a custom style, however, the colored stuff HAS to be exact) ..
<if condition="(THIS_SCRIPT == 'tabforumhome' AND in_array($forum['forumid'], $GLOBALS[tabcats])) OR THIS_SCRIPT == 'forumdisplay'">
<tbody>
<tr>
<td class="tcat" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<if condition="$childforumbits">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumbit_$forumid')"><img id="collapseimg_forumbit_$forumid" src="$stylevar[imgdir_button]/collapse_tcat{$collapseimg_forumid}.gif" alt="" border="0" /></a>
</if>
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>
<if condition="$show['forumdescription']"><div class="smallfont">$forum[description]</div></if>
<if condition="$show['subforums']"><div class="smallfont"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</td>
</tr>
</tbody>
<if condition="$childforumbits">
<tbody id="collapseobj_forumbit_$forumid" style="{$collapseobj_forumid}">
<if condition="$forum['subforumcolumns'] > 1">
<tr>
<td class="alt1" colspan="<if condition="$vboptions[showmoderatorcolumn]">6<else />5</if>">
<table style="border: none; width: 100%;">
$childforumbits
</table>
</td>
</tr>
<else />
$childforumbits
</if>
</tbody>
</if>
</if>
This works fine on both default vB and with Custom styles (I tested both this AM)
Cheertobi
09-06-2008, 11:40 PM
Hi,
great, thanks for this fast support, will try this tomorrow, need some sleep now!
Regards,
Tobias
AusFootball
09-07-2008, 10:29 AM
Just installed the mod, how do i add new forums under the new tab.
My site is www.dogforum.com.au
Thanks
bobster65
09-08-2008, 02:11 PM
Hi,
great, thanks for this fast support, will try this tomorrow, need some sleep now!
Regards,
Tobias
Did you get it configured ok?
Just installed the mod, how do i add new forums under the new tab.
My site is www.dogforum.com.au
Thanks
Which version?
megabyte366
09-08-2008, 05:28 PM
Great mod... i love it... i look but i didn't find it... how can i hide my staff tab, but make is visible to the staff only..
thanks..
bobster65
09-08-2008, 08:15 PM
Great mod... i love it... i look but i didn't find it... how can i hide my staff tab, but make is visible to the staff only..
thanks..
You can wrap the specific <li> tag with a template conditional where the numbers after userinfo are the User Group IDs that you want to display the Tab too.
<if condition="is_member_of($vbulletin->userinfo, 5,6)">
CODE HERE
</if>
So for example if you had 3 Tabs and wanted to hide one for Staff Only it would look like this..
<div id="ajaxTFH" class="TFHmenu2">
<ul>
<li class="selected"><a href="tabforumhome.php?tabcat[]=1" rel="ajaxTFHcontentarea">TAB 1 NAME</a></li>
<li><a href="tabforumhome.php?tabcat[]=1&tabcat[]=2" rel="ajaxTFHcontentarea">TAB 2 NAME</a></li>
<if condition="is_member_of($vbulletin->userinfo, 5,6)">
<li><a href="tabforumhome.php?tabcat[]=100" rel="ajaxTFHcontentarea">STAFF</a></li>
</if>
</ul>
</div>
megabyte366
09-08-2008, 09:37 PM
thanks for the reply bobster65... now i have another problems.. and i'm sure it's an easy fix... the left side where you have the new or old icons.... now that is missing the gif pic.. and has words in it...
thanks for the help
bobster65
09-08-2008, 09:48 PM
thanks for the reply bobster65... now i have another problems.. and i'm sure it's an easy fix... the left side where you have the new or old icons.... now that is missing the gif pic.. and has words in it...
thanks for the help
Path issue to the image.. yer the first to have that one (that has been reported).. would you mind PMing me the link to your site so I can check out the front end really quick?
Digital Jedi
09-08-2008, 11:09 PM
You can wrap the specific <li> tag with a template conditional where the numbers after userinfo are the User Group IDs that you want to display the Tab too.
<if condition="is_member_of($vbulletin->userinfo, 5,6)">
CODE HERE
</if>
So for example if you had 3 Tabs and wanted to hide one for Staff Only it would look like this..
<div id="ajaxTFH" class="TFHmenu2">
<ul>
<li class="selected"><a href="tabforumhome.php?tabcat[]=1" rel="ajaxTFHcontentarea">TAB 1 NAME</a></li>
<li><a href="tabforumhome.php?tabcat[]=1&tabcat[]=2" rel="ajaxTFHcontentarea">TAB 2 NAME</a></li>
<if condition="is_member_of($vbulletin->userinfo, 5,6)">
<li><a href="tabforumhome.php?tabcat[]=100" rel="ajaxTFHcontentarea">STAFF</a></li>
</if>
</ul>
</div>
Wouldn't that be:
<if condition="is_member_of($bbuserinfo, 5, 6)">
I thought $vbulletin-> only worked in files.
bobster65
09-09-2008, 06:40 AM
Wouldn't that be:
<if condition="is_member_of($bbuserinfo, 5, 6)">
I thought $vbulletin-> only worked in files.
You can do it both ways, I prefer to use $vbulletin->userinfo however.
megabyte366
09-09-2008, 09:13 AM
bobster65, Got everything working now... went back and redid it.... and pics are showing up... maybe did something wrong the 1st time the pic's are showing up... however; tried the hide the staff with your code and it still shows up.... correction: it worked...placed it at the bottom and it worked for me.. thanks
also have another one..... i have two skins... if i made a new dir under the 2 skin and copy all the files to it and direct/change the file path to the sn2d skin this should also work... or do i just need to make a dir for the tabs/
Thanks.
JVCode
09-09-2008, 10:59 AM
Thanks for the mod! works a treat... Just a feature request, Would there be a way to have Sub-Tabs? Same as Sub-forums really, but as tabs. Would be excellent for my games forums.
bobster65
09-09-2008, 03:11 PM
bobster65, Got everything working now... went back and redid it.... and pics are showing up... maybe did something wrong the 1st time the pic's are showing up... however; tried the hide the staff with your code and it still shows up.... correction: it worked...placed it at the bottom and it worked for me.. thanks
also have another one..... i have two skins... if i made a new dir under the 2 skin and copy all the files to it and direct/change the file path to the sn2d skin this should also work... or do i just need to make a dir for the tabs/
Thanks.
you can use the same .js file for multiple styles, but you will want to create a new .css file for the 2nd style.. it can be in the same directory, just a different name..
Thanks for the mod! works a treat... Just a feature request, Would there be a way to have Sub-Tabs? Same as Sub-forums really, but as tabs. Would be excellent for my games forums.
I've played around a little bit with this concept, but right now our main focus is to get v2 out the door.. will certainly add this to the white board tho...
JVCode
09-09-2008, 08:25 PM
Thanks for the prompt reply.
One other question; The current system 'Acquires Content' each time when visiting the forum homepage, regardless of whether you've visited another tab or not, which in turn takes some time to load. Is there a way to make it so the Home Page loads as it normally would, (when the hack isn't installed) and just acquire the content on the categories which aren't on the home page?
That's the best way I could word my problem. Anyone make heads or tales of it? Help appreciated :)
illithid
09-10-2008, 03:31 PM
I searched this entire thread for any issues with javascript being used inside of the ajax tab view. Couldn't find what I was looking for.
First, let me give props to the author of this mod, it is wonderful! Secondly, I have it installed on my forum and decided that I could use it on my home page as well. It works. My problem though, is that if the tab makes a call to a page that has data generated from javascript, the data won't display(while in the tab view). However, if you go directly to the page, outside of the ajax tab, then the data will display.
Obviously, the problem is javascript is being suppressed by the ajax tab view. Is there a way to work around this?
I have added two images, 1 shows the contents of the ajax tab view for my test file, the second image is the actual display when going directly to the test page.
g0dfather1984
09-10-2008, 04:41 PM
Great feature, however I am having one slight problem.
I have the tabs up for the forums & what not. But there is one that doesn't show up. I have the proper ID for it, but still no luck. Out of 6 different tabs, this is the only one that's not working.
Thank you for your help.
I like your [AJAX] tabbed approach very much, but unfortunately it is incompatible with custom arranged subforums (vertically aligned) using this mod (https://vborg.vbsupport.ru/showthread.php?t=177954).
g0dfather1984
09-10-2008, 04:57 PM
I like your [AJAX] tabbed approach very much, but unfortunately it is incompatible with custom arranged subforums (vertically aligned) using this mod (https://vborg.vbsupport.ru/showthread.php?t=177954).
I had the same problem, however it was fixed.
Try changing the seperator from a comma to a line break.
RobbieZ
09-10-2008, 05:26 PM
RobbieZ clicks install :D
bobster65
09-10-2008, 10:14 PM
I searched this entire thread for any issues with javascript being used inside of the ajax tab view. Couldn't find what I was looking for.
Obviously, the problem is javascript is being suppressed by the ajax tab view. Is there a way to work around this?
There is, but its not something that you probably would be interested in .. you can try it tho and see if it works for you... (using the iframe mode)
"an external page can also be fetched and displayed via the IFRAME element instead. This is useful for external pages that either contain JavaScript/ CSS code that doesn't run properly when fetched via Ajax"
This is what to do...
rel="#default|containerid|#iframe": For each tab link that should reveal content when clicked on, add a "rel" attribute inside its link tag with one of three possible values: "#default", id_of_container_div, or "#iframe". This in combination with the link's href attribute determines what external file to fetch, and how to display it. Most commonly you'll be using containerid, which corresponds to the ID of the container DIV on the page in which to load the Ajax fetched content (see Step 2 below). "#default" and "#iframe" on the other hand are both special keywords. "#default" causes the tab to show no external content but instead what's embedded directly inside the container DIV, while #iframe causes the tab to show its content inside an IFRAME tag instead of via Ajax.
I have the tabs up for the forums & what not. But there is one that doesn't show up. I have the proper ID for it, but still no luck. Out of 6 different tabs, this is the only one that's not working.
And you are sure that the ID is a Category and not a Forum?
bobster65
09-10-2008, 10:20 PM
Thanks for the prompt reply.
One other question; The current system 'Acquires Content' each time when visiting the forum homepage, regardless of whether you've visited another tab or not, which in turn takes some time to load. Is there a way to make it so the Home Page loads as it normally would, (when the hack isn't installed) and just acquire the content on the categories which aren't on the home page?
That's the best way I could word my problem. Anyone make heads or tales of it? Help appreciated :)
The acquiring content is simply the way this ajax version works.. if you don't want current info, use the first version (its NON AJAX)..
With that said, the new version uses YUI Tab View which drastically speeds up the AJAX process.. night and day difference..
g0dfather1984
09-10-2008, 10:43 PM
There is, but its not something that you probably would be interested in .. you can try it tho and see if it works for you... (using the iframe mode)
"an external page can also be fetched and displayed via the IFRAME element instead. This is useful for external pages that either contain JavaScript/ CSS code that doesn't run properly when fetched via Ajax"
This is what to do...
rel="#default|containerid|#iframe": For each tab link that should reveal content when clicked on, add a "rel" attribute inside its link tag with one of three possible values: "#default", id_of_container_div, or "#iframe". This in combination with the link's href attribute determines what external file to fetch, and how to display it. Most commonly you'll be using containerid, which corresponds to the ID of the container DIV on the page in which to load the Ajax fetched content (see Step 2 below). "#default" and "#iframe" on the other hand are both special keywords. "#default" causes the tab to show no external content but instead what's embedded directly inside the container DIV, while #iframe causes the tab to show its content inside an IFRAME tag instead of via Ajax.
And you are sure that the ID is a Category and not a Forum?
Positive. Attachment included.
King Kovifor
09-10-2008, 10:58 PM
I searched this entire thread for any issues with javascript being used inside of the ajax tab view. Couldn't find what I was looking for.
First, let me give props to the author of this mod, it is wonderful! Secondly, I have it installed on my forum and decided that I could use it on my home page as well. It works. My problem though, is that if the tab makes a call to a page that has data generated from javascript, the data won't display(while in the tab view). However, if you go directly to the page, outside of the ajax tab, then the data will display.
Obviously, the problem is javascript is being suppressed by the ajax tab view. Is there a way to work around this?
I have added two images, 1 shows the contents of the ajax tab view for my test file, the second image is the actual display when going directly to the test page.
Please contact me through PM with the javascript code and I will work on seeing if it works for YUI and if not will attempt to find a way to fix it for 2.0 as 1.5.x is not currently under development.
illithid
09-11-2008, 12:32 AM
Please contact me through PM with the javascript code and I will work on seeing if it works for YUI and if not will attempt to find a way to fix it for 2.0 as 1.5.x is not currently under development.
Check your inbox, I sent the message. :)
There is, but its not something that you probably would be interested in .. you can try it tho and see if it works for you... (using the iframe mode)
"an external page can also be fetched and displayed via the IFRAME element instead. This is useful for external pages that either contain JavaScript/ CSS code that doesn't run properly when fetched via Ajax"
This is what to do...
rel="#default|containerid|#iframe": For each tab link that should reveal content when clicked on, add a "rel" attribute inside its link tag with one of three possible values: "#default", id_of_container_div, or "#iframe". This in combination with the link's href attribute determines what external file to fetch, and how to display it. Most commonly you'll be using containerid, which corresponds to the ID of the container DIV on the page in which to load the Ajax fetched content (see Step 2 below). "#default" and "#iframe" on the other hand are both special keywords. "#default" causes the tab to show no external content but instead what's embedded directly inside the container DIV, while #iframe causes the tab to show its content inside an IFRAME tag instead of via Ajax.
I got a little lost in your explanation of how to implement the use of the iframe. Regardless of that, I don't see how an iframe will actually help with this problem. To explain this a little better, I have a custom vBulletin "powered" page as my home page. I have implemented the ajax tabs into that page. Currently, I can display content in the ajax container, from html, php, css, xml and even a few made up extensions, by direct linking of the tab to the external file. Pages with code that isn't javascript will display, but the javascript fails.
bobster65
09-11-2008, 01:12 AM
Check your inbox, I sent the message. :)
I got a little lost in your explanation of how to implement the use of the iframe. Regardless of that, I don't see how an iframe will actually help with this problem. To explain this a little better, I have a custom vBulletin "powered" page as my home page. I have implemented the ajax tabs into that page. Currently, I can display content in the ajax container, from html, php, css, xml and even a few made up extensions, by direct linking of the tab to the external file. Pages with code that isn't javascript will display, but the javascript fails.
I know exactly what you are talking about.. I have two other mods for vBa that are Tabbed Content Modules and the same thing applies since they all use the same ajax.js file .... a lot of JS doesn't not play well with AJAX....
btw, tts easy... in the LI tag for the specific tab, there is a REL attribute.. replace the attribute with #iframe (see below)
<li><a href="mycustomfile.php" rel="#iframe">TAB NAME</a></li>
HagbardCeline
09-11-2008, 06:58 PM
really great add-on! i use this modification like a menu :rolleyes:
http://forum.bf3-community.com
dying4004
09-11-2008, 08:19 PM
bobster65: awesome mod bro. just changes the whole look of a forum with many catagories. i mean it looks so sleek. i have a prob though. small prob. when i click the 2nd or 3rd tab the status color of the tab doesnt switch. i mean clicking 2nd tab changes the content of the page but the tab1 still shows active. its a bit confusing u know. so cud u plz shed some light on this issue?? cheerz
bobster65
09-11-2008, 08:40 PM
bobster65: awesome mod bro. just changes the whole look of a forum with many catagories. i mean it looks so sleek. i have a prob though. small prob. when i click the 2nd or 3rd tab the status color of the tab doesnt switch. i mean clicking 2nd tab changes the content of the page but the tab1 still shows active. its a bit confusing u know. so cud u plz shed some light on this issue?? cheerz
That is all controlled via the CSS file. Simply play around with color settings until you get the desired results.... If you find the file too confusing, just PM me the CSS file that you are using and I will try and help you out when I have time :)
dying4004
09-11-2008, 09:48 PM
That is all controlled via the CSS file. Simply play around with color settings until you get the desired results.... If you find the file too confusing, just PM me the CSS file that you are using and I will try and help you out when I have time :)
thnx a lot for the reply bro. i will try to solve the prb by myself. but if i cant then i might take a precious time of urs to have a luk at my css. regards.
karlm
09-11-2008, 09:58 PM
Nice, but now, my admin zone shows to guests - though the contents don't - but they shouldn't be able to see that.
bobster65
09-11-2008, 11:38 PM
Nice, but now, my admin zone shows to guests - though the contents don't - but they shouldn't be able to see that.
This is simple (and is explained in post #2) You can wrap a specific TAB <li> tag with a template conditional where the numbers after userinfo are the User Group IDs that you want to display the Tab too.
So for example if you wanted to hide one for Staff Only it would look like this (See the code in RED)
<div id="ajaxTFH" class="TFHmenu2">
<ul>
<li class="selected"><a href="tabforumhome.php?tabcat[]=1" rel="ajaxTFHcontentarea">TAB 1 NAME</a></li>
<li><a href="tabforumhome.php?tabcat[]=1&tabcat[]=2" rel="ajaxTFHcontentarea">TAB 2 NAME</a></li>
<if condition="is_member_of($vbulletin->userinfo, 5,6)">
<li><a href="tabforumhome.php?tabcat[]=100" rel="ajaxTFHcontentarea">STAFF</a></li>
</if>
</ul>
</div>
bobster65
09-12-2008, 10:59 AM
I searched this entire thread for any issues with javascript being used inside of the ajax tab view. Couldn't find what I was looking for.
Obviously, the problem is javascript is being suppressed by the ajax tab view. Is there a way to work around this?
Hey Bud.. good news (unfortunately, not for version 1.5 tho) .. With V2, you will be able to execute scripts both remote and inline during the dataSrc request :D
For In Line Javascript, The script tag will be executed when the tab is activated.
For Remote Javascript, you can load components dynamically during the tab loading process. You can dynamically load CSS for your component and have it injected into the current page style set. You'll then be able to create content on the fly using the script inline.
This actually solved a few of the major "bugs" that have been reported which means Version 2 took a major leap towards being released soon for beta testing...
maidos
09-12-2008, 11:32 AM
any eta when 2.0 will get released?
illithid
09-12-2008, 04:03 PM
Hey Bud.. good news (unfortunately, not for version 1.5 tho) .. With V2, you will be able to execute scripts both remote and inline during the dataSrc request :D
For In Line Javascript, The script tag will be executed when the tab is activated.
For Remote Javascript, you can load components dynamically during the tab loading process. You can dynamically load CSS for your component and have it injected into the current page style set. You'll then be able to create content on the fly using the script inline.
This actually solved a few of the major "bugs" that have been reported which means Version 2 took a major leap towards being released soon for beta testing...
Thanks so much, cause I got the #iframe method working, but the links open in the iframe....not very pretty at the moment. As for this fix fixing other issues, I am glad that I brought it your attention. I hope the release isn't much further away. Good work on this guys. :)
bobster65
09-12-2008, 05:04 PM
any eta when 2.0 will get released?
No. Getting closer to Beta Testing tho. Knocked out over 10 bugs last night alone by finding a new YUI Tab Component that works great with inline/external JS... Just hanf tight.. its a heck of a lot closer today than it was 12 hrs ago lol
Thanks so much, cause I got the #iframe method working, but the links open in the iframe....not very pretty at the moment. As for this fix fixing other issues, I am glad that I brought it your attention. I hope the release isn't much further away. Good work on this guys. :)
Ya, I mentioned that it was not the ideal solution (rather ugly lol)..btw, not sure if the JS script that KK has on the Dev server is yours or not, but if it is, Its working fine on my own Server with version 2.0 running ;)
And yes, thank you :up:
ShawnV
09-12-2008, 05:06 PM
No. Getting closer to Beta Testing tho. Knocked out over 10 bugs last night alone by finding a new YUI Tab Component that works great with inline/external JS... Just hanf tight.. its a heck of a lot closer today than it was 12 hrs ago lol
Great news, waiting on 2.0 also, thanks for the update.
_V
karlm
09-12-2008, 05:16 PM
This is simple (and is explained in post #2) You can wrap a specific TAB <li> tag with a template conditional where the numbers after userinfo are the User Group IDs that you want to display the Tab too.
So for example if you wanted to hide one for Staff Only it would look like this (See the code in RED)
<div id="ajaxTFH" class="TFHmenu2">
<ul>
<li class="selected"><a href="tabforumhome.php?tabcat[]=1" rel="ajaxTFHcontentarea">TAB 1 NAME</a></li>
<li><a href="tabforumhome.php?tabcat[]=1&tabcat[]=2" rel="ajaxTFHcontentarea">TAB 2 NAME</a></li>
<if condition="is_member_of($vbulletin->userinfo, 5,6)">
<li><a href="tabforumhome.php?tabcat[]=100" rel="ajaxTFHcontentarea">STAFF</a></li>
</if>
</ul>
</div>
Thanks - I had intended to ask whether a conditional would work... but just forgot to mention.
King Kovifor
09-12-2008, 06:21 PM
No. Getting closer to Beta Testing tho. Knocked out over 10 bugs last night alone by finding a new YUI Tab Component that works great with inline/external JS... Just hanf tight.. its a heck of a lot closer today than it was 12 hrs ago lol
Ya, I mentioned that it was not the ideal solution (rather ugly lol)..btw, not sure if the JS script that KK has on the Dev server is yours or not, but if it is, Its working fine on my own Server with version 2.0 running ;)
And yes, thank you :up:
Yes it is, but I am seeming to have problems. But other than that all I had to say was "WOW". LOL. It is getting much closer and it looks amazing.
aggiefan
09-12-2008, 07:00 PM
Great news, waiting on 2.0 also, thanks for the update.
_V
i am as well.... been watching this but it seems at this point it will be easier to just wait for 2.0 vs trying to make it work in its current form. i tried for about 5 mins a few days ago to make it work but never could so i removed it for now.
King Kovifor
09-12-2008, 07:59 PM
OK we have one major major thing to do that will alleviate tons of work and make it more 'seamlessly' integrated into vBulletin, but it's something that I haven't seen done before through modifications. It may have but I haven't found it. So we most likely have to 'reinvent' the wheel on this one.
illithid
09-13-2008, 01:19 AM
OK we have one major major thing to do that will alleviate tons of work and make it more 'seamlessly' integrated into vBulletin, but it's something that I haven't seen done before through modifications. It may have but I haven't found it. So we most likely have to 'reinvent' the wheel on this one.
Don't keep us in suspense as to what this "major major thing to do" is. BTW, I am willing to assist in any way possible with this mod....assuming you could use the assistance. I am not much good with javascript or ajax, however, I can code php quite well. My point is, instead of re-invent the wheel, let us know what it is that needs to be done, perhaps I, or somebody else has a solution.
King Kovifor
09-13-2008, 02:44 AM
Don't keep us in suspense as to what this "major major thing to do" is. BTW, I am willing to assist in any way possible with this mod....assuming you could use the assistance. I am not much good with javascript or ajax, however, I can code php quite well. My point is, instead of re-invent the wheel, let us know what it is that needs to be done, perhaps I, or somebody else has a solution.
IT has to do with the style.
aggiefan
09-13-2008, 04:00 AM
just so i know but will this mod when the 2.0 version comes will it be able to mimick what vbulletin.org has with its tabs in the header next to the logo. because thats how i was planning on using it. also as i understand it currently it only will work with forum categories (is that correct)? if so will it be possible to link to other sections using this in the 2.0 version? (specifically i would like to link to some of our addons... arcade, pickem contest we coded, etc)
illithid
09-13-2008, 04:11 AM
just so i know but will this mod when the 2.0 version comes will it be able to mimick what vbulletin.org has with its tabs in the header next to the logo. because thats how i was planning on using it. also as i understand it currently it only will work with forum categories (is that correct)? if so will it be possible to link to other sections using this in the 2.0 version? (specifically i would like to link to some of our addons... arcade, pickem contest we coded, etc)
I can not speak on v2 of this mod as it is not released yet, but I can tell you about the current release. I have it installed and am using it like it was intended to be used...ie on the forum to switch between forum categories. The way it works is like vBulleting.org -> each tab is linked to the categories you assign to them and only that category will be displayed on the page for the tab that is selected.
In addition to the standard use of these tabs, I have implemented them on my website (not used on the forum) to pull external content. So essentially, you could use the tabs in other places besides on your forum. I will say this though, as I have found so far, the pages you plan to include these tabs on, will have to be tied into the vBulletin forum. My website consists of custom pages that use the vBulletin API, which allow me to tie into the vBulletin forum. This is how I am able to use the tabs externally from the forum.
As for your addons, arcade, etc. as long as the tabs are tied into your forum, you will be able to link to mostly anything. The only problem so far is pulling javascript into the ajax tab view...ajax and javascript don't play well with each other....to my understanding, v2 fixes that issue.
I can tell you this, this mod is wonderful now. When v2 is released, it will be better without a doubt. Again, I have found uses for this mod external from the forum and only 1 limitation thus far.
bobster65
09-13-2008, 10:54 AM
Don't keep us in suspense as to what this "major major thing to do" is. BTW, I am willing to assist in any way possible with this mod....assuming you could use the assistance. I am not much good with javascript or ajax, however, I can code php quite well. My point is, instead of re-invent the wheel, let us know what it is that needs to be done, perhaps I, or somebody else has a solution.
Nothing is in suspense, its an additional feature that really has nothing to do with "functionality" and will not hold up beta testing or the beta release. He gave you a hint, it has something to do with Styles. Not going to get into details, because we are not sure which way we want to approach it since it has not been done yet (that I know of).. but rest assured, its NOT going to hold up the beta testing or the beta release...
bobster65
09-13-2008, 11:11 AM
just so i know but will this mod when the 2.0 version comes will it be able to mimick what vbulletin.org has with its tabs in the header next to the logo. because thats how i was planning on using it. also as i understand it currently it only will work with forum categories (is that correct)? if so will it be possible to link to other sections using this in the 2.0 version? (specifically i would like to link to some of our addons... arcade, pickem contest we coded, etc)
It "could" but it would require some major customization. This wasn't designed to mimic that. The functionality of the two are totally different. Using this to do what they did would be OVERKILL lol..
No, ver2 will work with more than just categories, there is a "modules" plug in that you enter the URI to the external file and it will be included as content for that tab.. (you can use any of the "content" files that I have released with my CMPS AJAX Tabs Mod as well .. recent threads, blogs, news, links, photos etc.. custom content will be pretty easy to add to this. Hell, you could knock out a simple static HTML file, upload it to your server and then with the Module part in the ACP, just enter the file name, give it a tab name and you have a custom tab with your content.. or you can write a complex php file and do the same thing...
ShawnV
09-14-2008, 02:18 PM
No, ver2 will work with more than just categories, there is a "modules" plug in that you enter the URI to the external file and it will be included as content for that tab.. (you can use any of the "content" files that I have released with my CMPS AJAX Tabs Mod as well .. recent threads, blogs, news, links, photos etc.. custom content will be pretty easy to add to this. Hell, you could knock out a simple static HTML file, upload it to your server and then with the Module part in the ACP, just enter the file name, give it a tab name and you have a custom tab with your content.. or you can write a complex php file and do the same thing...
/Drool
Your teams work and dedication to improve this already great MOD is greatly appreciated.
_V
TheInsaneManiac
09-14-2008, 06:23 PM
Right now, the 1.01 NON Ajax version, what would the queries be for that? Cause I think this is putting a huge load on my server.
siriuxs
09-15-2008, 01:13 PM
It is possible to have a different color for each tab?
craiovaforum
09-15-2008, 01:34 PM
It is possible to have a different color for each tab?
you can do that by editing ajaxtabs.css and adding something like this:
.TFHmenu2 a#specialtab {
background: #FF0000;
}
.TFHmenu2 a#specialtab.selected {
background: #FF3333;
border-color: #FF3333;
}
then, in the forumhome template where you defined your tabs just add class="specialtab" to the <a> you want inside the list.
TimberFloorAu
09-15-2008, 11:03 PM
Okies. this is my second attempt at looking at this mod.
Im a great lover of ajax tabs, and we use it extensively on other (non Vb ) websites.
Just to get my head round this ( not always up with vb terminology )
So: here goes.
Example: i create 6 tabs.
called.
apples | oranges | bananas | grapes | nectarines | mangos
Can I assign different forum id's within each of those tabs.
So apples shows:
forum id's 1,34,78,23,14
Bananas 2,62,63,65
etc etc
This is the bit thats throwing me, as I keep seeing the word Category shown.. not sure what thats about.
Digital Jedi
09-15-2008, 11:17 PM
Okies. this is my second attempt at looking at this mod.
Im a great lover of ajax tabs, and we use it extensively on other (non Vb ) websites.
Just to get my head round this ( not always up with vb terminology )
So: here goes.
Example: i create 6 tabs.
called.
apples | oranges | bananas | grapes | nectarines | mangos
Can I assign different forum id's within each of those tabs.
So apples shows:
forum id's 1,34,78,23,14
Bananas 2,62,63,65
etc etc
This is the bit thats throwing me, as I keep seeing the word Category shown.. not sure what thats about.
It only displays forums you've setup as categories. Meaning it displays a category and all the subforums that are a part of it. You can, however, display multiple categories.
TimberFloorAu
09-15-2008, 11:20 PM
It only displays forums you've setup as categories. Meaning it displays a category and all the subforums that are a part of it. You can, however, display multiple categories.
Thats a shame huh.
Surely. Though, creating it so that it displays various forum id.s in some sort of order is simple enough. At the end of the day, forumhome only lists the forums, 'a la' chronological id.
Digital Jedi
09-15-2008, 11:27 PM
I don't know. I've never listed forums outside of a category because of the peculiar way it looks on forumhome.
TimberFloorAu
09-15-2008, 11:47 PM
I don't know. I've never listed forums outside of a category because of the peculiar way it looks on forumhome.
Not sure if we use categories lol.. must check :)
::checked . we have 10 categories ( excl admin and mods area )
Digital Jedi
09-15-2008, 11:51 PM
Yeah, I actually chucked a few forums into their own category just so I could exploit the look under each tab. I also have a Staff tab.
TimberFloorAu
09-16-2008, 12:00 AM
So which version of this do you use Mark
Digital Jedi
09-16-2008, 12:01 AM
The AJAX version. Forumhome was always a little heavy.
TimberFloorAu
09-16-2008, 12:03 AM
The AJAX version. Forumhome was always a little heavy.
Cheers mate, will have a looksy at yours and see what I can STEAL ( idea wise lol ) ;)
I love your forum, its slick !
Digital Jedi
09-16-2008, 12:20 AM
I'm glad you like it. My mods just told me recently that a bunch of people don't like the design. :confused:
I do plan on changing the tabs again. I'm not sold on the alternate toolbar thing I have now.
I used an if conditional to hide the Staff tab so there wasn't an empty tab showing to users not in that usergroup.
Is it possible to have tabs in two levels?
like:
tab | tab | tab | tab |tab | tab
tab | tab |tab | tab |tab
Digital Jedi
09-16-2008, 12:54 AM
Is it possible to have tabs in two levels?
like:
tab | tab | tab | tab |tab | tab
tab | tab |tab | tab |tab
Yeah, but you have to use tables instead of <li> list tags.
TimberFloorAu
09-16-2008, 01:52 AM
I'm glad you like it. My mods just told me recently that a bunch of people don't like the design. :confused:
I do plan on changing the tabs again. I'm not sold on the alternate toolbar thing I have now.
I used an if conditional to hide the Staff tab so there wasn't an empty tab showing to users not in that usergroup.
Yep.
I recently re did all of the css, and kept some of the original code, and it went down like a lead baloon.. but cpl of weeks on they are all happy. ( i think )
I would like to go for a fixed layout tho, and offer as an alternate to fluid.
TimberFloorAu
09-16-2008, 11:22 PM
Okies im at my wits end with this.
Something isnt right
All I get is requesting content... nothing appears
Test link at:
http://www.yobromofo.com/forum/index.php?styleid=11
first tabbed link is forum id=23
Which acts as a category.
But shows nothing ..
<li class="selected"><a href="tabforumhome.php?tabcat[]=23" rel="ajaxTFHcontentarea">Fair Dinkum</a></li>
Any suggestions plz?
Digital Jedi
09-16-2008, 11:38 PM
Are you sure you put the contents of the folder in the right place?
TimberFloorAu
09-16-2008, 11:43 PM
Are you sure you put the contents of the folder in the right place?
contents .. you mean client script etc?
yep..
only thing i think it could be is,.. that category=12 has various forums under it, not other categories..
Is this the way this works.. or does it work on the basis, of displaying forums under a specific category, which is what I hoped for.?
Digital Jedi
09-16-2008, 11:55 PM
It should work the way you have it. But from what I'm seeing, it doesn't look like you have a tabs folder in your clientscript folder, which is why I'm surprised your CSS is working.
chiptz
09-16-2008, 11:57 PM
I am using this mod and I am very happy with the result (http://www.techzonept.com/?styleid=60 - you won't be able to see some tabs or forums, thus it will appear some tabs are empty but they are not).
I now am looking to change 4 things:
- tab for blogs plugin
- tab for projects plugin
- who's online displayed only on certain tabs (easy on non-ajax version)
- tabs appearing in every page and not only on forum home
any clue on how to do this?
Digital Jedi
09-17-2008, 12:02 AM
contents .. you mean client script etc?
yep..
only thing i think it could be is,.. that category=12 has various forums under it, not other categories..
Is this the way this works.. or does it work on the basis, of displaying forums under a specific category, which is what I hoped for.?
Wait, I just noticed the loading image is looking for it in the wrong location. It's looking for the tabs folder here:
yobromofo.com/clientscript/tabs/loading.gif
When it should be looking here:
yobromofo.com/forum/clientscript/tabs/loading.gif
TimberFloorAu
09-17-2008, 12:04 AM
It should work the way you have it. But from what I'm seeing, it doesn't look like you have a tabs folder in your clientscript folder, which is why I'm surprised your CSS is working.
http://www.yobromofo.com/forum/clientscript/tabs/
All there .. I believe..
I have just re edited the css and js paths , still doesnt work tho.. have given them absolute path
TimberFloorAu
09-17-2008, 12:07 AM
edited css/js path to :
/forum/clientscript/tabs/ajaxtabs.js
/forum/clientscript/tabs/ajaxtabs.css
in forumhome
Shows the tabs... nothing else...
Changed now to full url path
Also changed ajaxtabs.js loading gif , to full url path..
Thats not the major issue tho.. the tab when clicked shows no content..
TimberFloorAu
09-17-2008, 12:29 AM
Just a thought...
Currently we have ( example ) forumid 12 set as a forum
with lots of child forums under it.
Should they all become sub-categories of a parent category ... for this to work??
or could it be a VBSEO setting???
Digital Jedi
09-17-2008, 12:48 AM
Hrm, I'm not sure on this one. It might just be another modification like vBSEO, because from what I'm looking at, you have everything set up right.
Of course, I haven't eaten since yesterday. So take that with a grain of salt.
TimberFloorAu
09-17-2008, 12:49 AM
Hrm, I'm not sure on this one. It might just be another modification like vBSEO, because from what I'm looking at, you have everything set up right.
Of course, I haven't eaten since yesterday. So take that with a grain of salt.
LOL
I am thinking it has to be a vbseo issue, .. i cant think of anything else.
GO EAT !
Edit:
It isnt VBSEO
bobster65
09-17-2008, 01:09 AM
I now am looking to change 4 things:
- tab for blogs plugin
- tab for projects plugin
- who's online displayed only on certain tabs (easy on non-ajax version)
- tabs appearing in every page and not only on forum home
any clue on how to do this?
With TFH version 2, you will be able to add external content files to tabs and I have content files for Blogs, Project tools, recent threads, news, links, thumbs, photos etc...
I also have (and I am about to release) AJAX Tabs Content Version 3.0 (YUI) that can be used on ANY Page to display external content as well (to include TFH) ..
bobster65
09-17-2008, 01:17 AM
LOL
I am thinking it has to be a vbseo issue, .. i cant think of anything else.
GO EAT !
Edit:
It isnt VBSEO
ya, VBSEO doesn't effect it..
looks like you got the files in the correct place..
change the calls to the CSS and JS to this really quick.. I want to see if the www vs non www is effecting it..
<!-- Tabbed Forum Home Header Code -->
<link rel="stylesheet" type="text/css" href="clientscript/tabs/ajaxtabs.css" />
<script type="text/javascript" src="clientscript/tabs/ajaxtabs.js"> </script>
<!-- /Tabbed Forum Home Header Code -->
TimberFloorAu
09-17-2008, 01:22 AM
ya, VBSEO doesn't effect it..
looks like you got the files in the correct place..
change the calls to the CSS and JS to this really quick.. I want to see if the www vs non www is effecting it..
<!-- Tabbed Forum Home Header Code -->
<link rel="stylesheet" type="text/css" href="clientscript/tabs/ajaxtabs.css" />
<script type="text/javascript" src="clientscript/tabs/ajaxtabs.js"> </script>
<!-- /Tabbed Forum Home Header Code -->
Changed ( but have tried this already )
bobster65
09-17-2008, 01:26 AM
Changed ( but have tried this already )
well, troubleshooting consists of trying little things that people have had problems with in the past. I am just trying to help and I have a check list and that is the first thing that is on the list ;)
usually, when it just sits and spins its because it can't FIND something, meaning that a path is incorrect or a file is in the wrong place or not named correctly... To help, I'd really need to see more than just viewing the source of your forum home page..
TimberFloorAu
09-17-2008, 01:31 AM
well, troubleshooting consists of trying little things that people have had problems with in the past. I am just trying to help and I have a check list and that is the first thing that is on the list ;)
usually, when it just sits and spins its because it can't FIND something, meaning that a path is incorrect or a file is in the wrong place or not named correctly... To help, I'd really need to see more than just viewing the source of your forum home page..
What do you need Bob.
Its yours mate.
Really need this to work..:)
TimberFloorAu
09-17-2008, 01:32 AM
well, troubleshooting consists of trying little things that people have had problems with in the past. I am just trying to help and I have a check list and that is the first thing that is on the list ;)
usually, when it just sits and spins its because it can't FIND something, meaning that a path is incorrect or a file is in the wrong place or not named correctly... To help, I'd really need to see more than just viewing the source of your forum home page..
What do you need Bob.
Its yours mate.
Really need this to work..:)
Should I install for our Main Template?
or just leave on this test template...?
viper007
09-17-2008, 09:39 PM
how can i change the colour of the tabs i need to cange that colour to 1370e0 html ccolour
Digital Jedi
09-17-2008, 11:55 PM
how can i change the colour of the tabs i need to cange that colour to 1370e0 html ccolour
You edit the CSS file to customize the look of the tabs.
murekhalir
09-21-2008, 06:26 AM
I'm opening a new site...
i'm not sure whats the difference between ajax, and the normal version.
anyone help?
Digital Jedi
09-21-2008, 06:42 AM
AJAX loads the content only when you click a tab and it's easier to install.
ishare
09-21-2008, 08:30 PM
Thank you very much for this great mod.
I've installed it and it made my forumhome much more clean.
But i have a problem with the content.
It takes quite long time (usually 2-5 seconds, but sometimes more) to open the content of the tab.
Is it possible to make it as fast as the demo link (BBW Forums (http://www.bbwforums.net/forum/)) you mentioned in your message.
Without the tabs, my forum is working quite fast. At least much faster than this.
Maybe i did something wrong...
Can you suggest me a solution ?
Regards
King Kovifor
09-21-2008, 11:49 PM
Thank you very much for this great mod.
I've installed it and it made my forumhome much more clean.
But i have a problem with the content.
It takes quite long time (usually 2-5 seconds, but sometimes more) to open the content of the tab.
Is it possible to make it as fast as the demo link (BBW Forums (http://www.bbwforums.net/forum/)) you mentioned in your message.
Without the tabs, my forum is working quite fast. At least much faster than this.
Maybe i did something wrong...
Can you suggest me a solution ?
Regards
The demo link is based off of 1.0.x where all forums are loaded at once and no AJAX calls are made. It takes longer due to the fact that AJAX must query the database and building the forumview every time the tab is loaded.
chiptz
09-22-2008, 05:59 PM
Hi
I don't know if this was already reported or not, but i loose one functionality when using the tabs: it is no longer possible to mark a forum as read by clicking on the forum icon. Is this normal?
bobster65
09-22-2008, 06:06 PM
Hi
I don't know if this was already reported or not, but i loose one functionality when using the tabs: it is no longer possible to mark a forum as read by clicking on the forum icon. Is this normal?
ya, that is a bug, but its been corrected in v2 (which will be out very soon)
LGKeiz
09-24-2008, 08:47 AM
Hello, I'm using the AJAX Tabbed version..
But when I click a tab, it shows every category instead of the ones I specify:
Heres my code example;
<li class="selected"><a href="tabforumhome.php?tabcat[]=4" rel="ajaxTFHcontentarea">GamingSync</a></li>
<li><a href="tabforumhome.php?tabcat[]=5" rel="ajaxTFHcontentarea">Test Cat one asdasdasdasdas dasdasdasNAME</a></li>
M-Tuning
09-24-2008, 09:44 AM
I am using v1.0.1 and i've got the tabs working.
But is there a way to change the headerimage with each tab?
I tried putting <div id="tcontent1" class="tabcontent"> </div> around the header and it works partial.
Now the header switches when I click the tab, but the forums are disappeared.
I hope sombody can help me.
The Geek
09-24-2008, 12:29 PM
Very cool job guys... making this to keep 'tabs' on your progression :)
Keep up the great work!
M-Tuning
09-24-2008, 01:49 PM
Already figured it out:
http://www.pspmedia.nl/test :D
iwarrior
09-24-2008, 02:21 PM
Nice mod.
I stuggled to get it installed on my site with the current theme, but it appears to be working - I think.
I just do not know how to get the tabs closer to the line below it and the forums.
I will appreciate any help. Here is my site >>> (http://www.webmasterforum.co.za)
Cust0ms
09-24-2008, 04:38 PM
Do you think this affects the SEO my board?
M-Tuning
09-24-2008, 04:46 PM
No it won't
Spiders can handle this.
Hornstar
09-24-2008, 10:45 PM
So this is kind of like split forum home hack where you can split certain forums section to another page, but instead of being on another page with just a link to it, it is ajax based into tabs?
Is that correct?
Will search engines be able to find the content okay? because I notice each of the tab links all end in a #
Ideally it would be great if it was actually showing a link where users could link other people directly to that tabbed page.
Is that possible?
This version is not AJAX Based, but yes, you have the right concept. Simply check out one of the Demo links to see it in action.
Yes, Search engines can spider the content just fine.
I am pretty sure that there is a way to do direct links.. I'll dig into it and when I find something, I'll respond back to ya :)
did you ever find out a way to do direct links?
Will version 2 have this?
Thanks.
bobster65
09-24-2008, 11:03 PM
did you ever find out a way to do direct links?
Will version 2 have this?
Thanks.
I stopped doing any further development on the older versions and have been concentrating on the next version. Version 2 will have it, just probably not in the first release (which will be a beta release).
King Kovifor
09-24-2008, 11:14 PM
Very cool job guys... making this to keep 'tabs' on your progression :)
Keep up the great work!
haha. I get it. :p
did you ever find out a way to do direct links?
Will version 2 have this?
Thanks.
I will try to fit into the final release for 2.0. Just some more handling and checking, but it will be easy.
Hornstar
09-25-2008, 12:34 AM
haha. I get it. :p
I will try to fit into the final release for 2.0. Just some more handling and checking, but it will be easy.
Okay great. Just to ensure we are on the same page.
If someone clicks on yourlink.com/forums/tab1.php then they are taken to your site and landed on tab1. and if they went to forums/tab2.php then they would be taken to your site but landed on tab2.
Not sure what the links will look like, but I will probably change them with vbseo.
------
On another note, I finally got this working, I had to add in the full link to my forums for every url location including to the loading.gif pic.
----
Lastly, as I have a custom skin, is there a way currently to make the tabs look like my style instead of the default vb style? (an easy way or do I need to be expeirenced in CSS editing?)
Thanks.
King Kovifor
09-25-2008, 01:26 AM
hornstar1337,
We are on different pages. LOL. The way I will most likely handle it is allow the addition of a seltab= value in the index URL and base the selection on that instead of using the default.
With a little bit of coding you could acheive your desired outcome.
Hornstar
09-25-2008, 05:33 AM
Okay thanks, also as I have a custom skin, is there a way currently to make the tabs look like my style instead of the default vb style? (an easy way or do I need to be expeirenced in CSS editing?
GrendelKhan{TSU
09-25-2008, 07:13 AM
awesome!!
question: if we install this now...
will it be easy to upgrade to 2.0 when that comes out? or will we have to redo everything under 2.0 to utilize YUI ?
csutton
09-25-2008, 12:12 PM
Hey guys, just had a slight issues with the install. www.simplygaming.net.au/forums-new
I'm sure you'll pick up the issue when you first see the site. Im sure i've followed the instructions, however i must have gone wrong somewhere, your help is appreciated.
Cheers
UPDATE: Issue resolved. Seemed to have need the url to link to the style sheets, rathan then the default.
Thanks, Great Mod!!
King Kovifor
09-26-2008, 02:14 AM
awesome!!
question: if we install this now...
will it be easy to upgrade to 2.0 when that comes out? or will we have to redo everything under 2.0 to utilize YUI ?
As of right now, no upgrade path due to the fact that the data is stored in the template, we can't easily convert. But 2.0 is much easier to seT up and manage.
johan204
09-26-2008, 07:55 AM
I really love this mod. Great work.
Can't hardly wait until version 2 will be brought (beta).
One comment though, maybe somebody said it allready, but in IE (7 and 8beta) the mod isn't consistent in his style. Firefox doesn't have that problem. There is a little space between the tabs itself and the bottom line linking the tabs to the forum (if you know what i mean).
Doom Stone
09-26-2008, 08:56 AM
Quick question, is it possible to hide tabs from users without permissions to view the content within the tabs? For example, everyone can view the tab "Staff Section" however only staff can view the content.
Lonny
09-26-2008, 09:37 AM
unbelievable idea.. good job my friend :)
bobster65
09-26-2008, 12:50 PM
Quick question, is it possible to hide tabs from users without permissions to view the content within the tabs? For example, everyone can view the tab "Staff Section" however only staff can view the content.
Its sure is :) (from post #2)
Tabs for Specific User Groups Only (Ver 1.50)
You can wrap a specific TAB <li> tag with a template conditional where the numbers after userinfo are the User Group IDs that you want to display the Tab too.
So for example if you wanted to hide one for Staff Only it would look like this (See the code in RED)
<div id="ajaxTFH" class="TFHmenu2">
<ul>
<li class="selected"><a href="tabforumhome.php?tabcat[]=1" rel="ajaxTFHcontentarea">TAB 1 NAME</a></li>
<li><a href="tabforumhome.php?tabcat[]=1&tabcat[]=2" rel="ajaxTFHcontentarea">TAB 2 NAME</a></li>
<if condition="is_member_of($vbulletin->userinfo, 5,6)">
<li><a href="tabforumhome.php?tabcat[]=100" rel="ajaxTFHcontentarea">STAFF</a></li>
</if>
</ul>
</div>
nureeves
09-26-2008, 01:39 PM
Hello
need help !!
i've followed the instruction, but i'm sure theres something wrong happened:
https://vborg.vbsupport.ru/
and when i click Tab Name .... :
https://vborg.vbsupport.ru/
did i miss something???
bobster65
09-26-2008, 01:44 PM
Hello
need help !!
i've followed the instruction, but i'm sure theres something wrong happened:
http://img140.imageshack.us/img140/8832/54374028yd3.jpg
and when i click Tab Name .... :
http://img215.imageshack.us/img215/1716/61015574jj9.jpg
did i miss something???
That is a PATH issue to the CSS File. Try use the FULL URL to the CSS file.
ShawnV
09-26-2008, 01:53 PM
As of right now, no upgrade path due to the fact that the data is stored in the template, we can't easily convert. But 2.0 is much easier to seT up and manage.
Thats why I am waiting for 2.0, any idea when the alpha will be out, few weeks, months?
_V
bobster65
09-26-2008, 02:07 PM
Thats why I am waiting for 2.0, any idea when the alpha will be out, few weeks, months?
_V
Beta is complete (as far as features/bugs) .. all that's left is install instructions (being drafted now)..
nureeves
09-26-2008, 04:13 PM
That is a PATH issue to the CSS File. Try use the FULL URL to the CSS file.
ahaaa .solved with Css issue,, but theres still nothing below it
what should i do??
https://vborg.vbsupport.ru/
btw thanks,, great mod
*click Install:)
bobster65
09-26-2008, 04:57 PM
ahaaa .solved with Css issue,, but theres still nothing below it
what should i do??
http://img72.imageshack.us/img72/1134/83505118gb3.jpg
btw thanks,, great mod
*click Install:)
Looks like you just need to configure the tabs (which is just a matter of assigning cat ids).. then modify the CSS to match your colors ..
ShawnV
09-26-2008, 05:00 PM
Beta is complete (as far as features/bugs) .. all that's left is install instructions (being drafted now)..
Awesome.....
/Does the Big Shoe Dance!
_V
nureeves
09-26-2008, 05:18 PM
nice
Cust0ms
09-26-2008, 08:34 PM
Great mod, thanks!
And 3 questions :)
1. How to change few categories to one tab?
2. I would like to use tabs but no for all forums. I want to do it like here:
http://www.dailysportspages.com/forums/index.php
FORUM 1 (no tab)
TABS (FORUM 1,2,3,4,5,6)
FORUM 2 (no tab)
3. How to change design my tabs? :)
Thanks!
How to edit my template?
Sawa Dee SohL
09-26-2008, 08:52 PM
I have a question / issue with the Tabs:
I've put it on my site: www.ThesocialRev.com
- How do I get the tabs to show up in box's - right now they show up, just as the text - and when the Tab is highlighted/clicked - THEN it shows the box. Anyway to put a box around them all, and just highlight the chosen tab?
Example: http://thesocialrev.com/forum/index.php
Also:
Once I go INTO a post, on the given tab-board-topic.
The tabs no longer show - I have to go back to the main board, in order to see the tabs.
Is there a way to get the tabs to show on every Page, even when inside a post?
For example: http://thesocialrev.com/forum/forumdisplay.php?f=2
- No tab's show.
bobster65
09-26-2008, 09:44 PM
Great mod, thanks!
And 3 questions :)
1. How to change few categories to one tab?
2. I would like to use tabs but no for all forums. I want to do it like here:
http://www.dailysportspages.com/forums/index.php
FORUM 1 (no tab)
TABS (FORUM 1,2,3,4,5,6)
FORUM 2 (no tab)
3. How to change design my tabs? :)
Thanks!
How to edit my template?
This can be done super easy with the NON AJAX version. Once I get done with some of the coding I am doing, I might have time to release some sample code on how to do this. Many members have already done this on their own, so they might jump in and help you out.
I have a question / issue with the Tabs:
I've put it on my site: www.ThesocialRev.com
- How do I get the tabs to show up in box's - right now they show up, just as the text - and when the Tab is highlighted/clicked - THEN it shows the box. Anyway to put a box around them all, and just highlight the chosen tab?
Example: http://thesocialrev.com/forum/index.php
Thats all handled with the CSS file. Just need to tweak it a little more. Look at the CSS from the version 1 NON Ajax and you will see how to do images for the Tabs. Also, Take a look at the default CSS that came in the ZIP file (yours has been edited)..
Also:
Once I go INTO a post, on the given tab-board-topic.
The tabs no longer show - I have to go back to the main board, in order to see the tabs.
Is there a way to get the tabs to show on every Page, even when inside a post?
For example: http://thesocialrev.com/forum/forumdisplay.php?f=2
- No tab's show.
Yes, the Tabs are for the FORUM HOME only. The MOD only breaks out the FORUM HOME, that is what it was designed to do. With some customization, you can place a tabbed menu within the forum view and thread view, but that is only a menu system which would still have to bring you back to the forum home.
with that said, I do have a proto type that I am messing around with that actually keeps everything on one page.. ie, you click on a tab, it lists the forum content for that tab and when you click on a thread, the thread opens up in that container.... I am pretty sure that this is what some people want, but it is a massive rewrite of a lot of code and its not something thats going to become reality anytime soon..
Sawa Dee SohL
09-26-2008, 11:01 PM
if/when that becomes public - please let me know :D
nureeves
09-26-2008, 11:30 PM
dear all, i still don't understand about assigning cat ids to configure the tab ..
in these code:
<li class="selected"><a href="tabforumhome.php?tabcat[]=1" rel="ajaxTFHcontentarea">TAB 1 NAME</a></li>
what shoud i change?
King Kovifor
09-27-2008, 03:03 AM
changethe tabcat part. And either subscribe to this thread or click install, I'm sure that bob will send out an email about the beta.
Doom Stone
09-27-2008, 10:13 AM
Thanks Bobster ;)
nureeves
09-27-2008, 11:19 AM
hi again :)
it works well on Firefox, but looks bad when i preview on IE,
I don't have any idea about this ...
Cust0ms
09-27-2008, 12:37 PM
This can be done super easy with the NON AJAX version. Once I get done with some of the coding I am doing, I might have time to release some sample code on how to do this. Many members have already done this on their own, so they might jump in and help you out.
Thanks. I "installed' NON AJAX version but I have 2 problems:
1. Efficient is only one tab. 2nd and 3rd don't work.
2. I use the MGC Shoutbox, he's located below forums. When I brought changes SB is below forums (it's ok) but is doubly above forums too. :/
Please, help me...
bobster65
09-27-2008, 01:57 PM
hi again :)
it works well on Firefox, but looks bad when i preview on IE,
I don't have any idea about this ...
That is a CSS issue with some styles.. someone posted a solution to that awhile back.. you can search the thread for it and see if that works for you.. If I recall, it has something to do with one of the DIVs..... IF I get time, I will look into it, but all this support is delaying me releasing the next version.... if you can not find the solution that was posted, let me know and I will search for the solution for you...
Thanks. I "installed' NON AJAX version but I have 2 problems:
1. Efficient is only one tab. 2nd and 3rd don't work.
2. I use the MGC Shoutbox, he's located below forums. When I brought changes SB is below forums (it's ok) but is doubly above forums too. :/
Please, help me...
1. Make sure you complete the install. Everyone gets so excited that Tab 1 is working that they forget to finish the install (Which is why the other tabs won't work)..
2. I don't use MGC Shoutbox, so I don't know what it would be showing double. Maybe someone that has knowledge of MGC Shoutbox can assist you?
nureeves
09-27-2008, 05:38 PM
That is a CSS issue with some styles.. someone posted a solution to that awhile back.. you can search the thread for it and see if that works for you.. If I recall, it has something to do with one of the DIVs..... IF I get time, I will look into it, but all this support is delaying me releasing the next version.... if you can not find the solution that was posted, let me know and I will search for the solution for you...
found it,
i removed <br style="clear:left" /> from FORUMHOME template
but still... selected tabs changed when hovering mouse,
This mods looks so wonderful on Firefox but not with IE
aarrghh ... just can't wait ver.2.0 :rolleyes:
Cust0ms
09-28-2008, 08:48 AM
1. Make sure you complete the install. Everyone gets so excited that Tab 1 is working that they forget to finish the install (Which is why the other tabs won't work)..
2. I don't use MGC Shoutbox, so I don't know what it would be showing double. Maybe someone that has knowledge of MGC Shoutbox can assist you?
I did everything again and it works! Both problems disappeared.
You're great! :p
So now could You help me with this?
2. I would like to use tabs but no for all forums. I want to do it like here:
http://www.dailysportspages.com/forums/index.php
FORUM 1 (no tab)
TABS (FORUM 1,2,3,4,5,6)
FORUM 2 (no tab)
How to do it?
And 2nd question :D
Where can I define forum's IDs to locate categories in spefyfic tab? E.g. categories 1,2,3 to TAB1, categories 4,7,12 to TAB2 etc.
I have read the instructions several times and still I do not know how to share (tabbed) a forum ...
When I click TAB1 I see all forums. When I click TAB2 I see some category, the same is the case TAB3.
How can I add my own, specyfic categories? I tried change additional code in index_tab.php, edit forumhome template, but it does not work. ;/
Please help me!
Cust0ms
09-28-2008, 07:38 PM
Can anyone help me?
Nova99
09-28-2008, 10:10 PM
Any ETA on version 2.0?? (no exact date needed, just if it's a week, month, or more away)
I would really like to install this mod on my forum, but I'd rather wait for version 2.0 if it's not a month+ away.. :)
King Kovifor
09-28-2008, 11:07 PM
Any ETA on version 2.0?? (no exact date needed, just if it's a week, month, or more away)
I would really like to install this mod on my forum, but I'd rather wait for version 2.0 if it's not a month+ away.. :)
Soon...
Hi all
I had exactly the same probs as TimberFloorAu
I had changed all the links etc too.
I found that the tabforumhome.php in the root had not uploaded correctly 0kb
after reloading it all worked
great MOD thanks
Hold up
if you don't have javascript it is not working as it goes to tabforumhome.php showing a mess and therefore it is not degrading gracefully
Did I miss something or was I making an assumption?
was this not to do with the creating new template bit?
help please - I may have to uninstall
King Kovifor
09-29-2008, 01:15 AM
This mod is dependent on JavaScript as is all AJAX.
This mod is dependent on JavaScript as is all AJAX.
Thank you for your response
Modern web thinking would mean that AJAX used in sites should degrade gracefully meaning if no ajax it works through normal page loads
this is what I think happens with the new template and the <!-- main --> stuff we moved to the new template
my impression was that it would revert to the old template when no java present
I shall have to look at this in more detail - Can the developer clarify which way this lies
Hamednet
09-29-2008, 09:26 AM
thanks dear
very nice !
dazkeirle
09-29-2008, 11:17 AM
ok guys.
First: Anyone with a linux box, in the js file remove the "/" before clientscript in the source for the css and the loading gif. That will allow those to load.
Second: anybody noticing these display different by default on IE and firefox, It's because the line is added as a class to a break (<br>) instead of a div. Change to a div and all should be well.
I've installed the tabbing. And it looks nice: http://www.mygreatphone.com/forum
Only comments would be:
a) I'd really like it if i could add individual forums to a tab and not just categories.
b) A simple bit of code to show all cats (for my everything tab, instead of having to add everything)
c) The forums no longer show how many are viewing each forum, that would be a really welcome thing to have back, and may even be a deal breaker to whether i use this in the long term.
d)Would be great if it would degrade gracefully, so if no JS or ajax, that it loads the default or other non tabbed style.
Anyway, good for a work-print add-on, but a bit to go before it's perfect (ie. features not working like number viewing and lack of degradation.)
bobster65
09-29-2008, 02:08 PM
Thank you for your response
Modern web thinking would mean that AJAX used in sites should degrade gracefully meaning if no ajax it works through normal page loads
this is what I think happens with the new template and the <!-- main --> stuff we moved to the new template
my impression was that it would revert to the old template when no java present
I shall have to look at this in more detail - Can the developer clarify which way this lies
We agree with you, however, there is currently no checking to see if JS is disabled. This is something that is being looked into for the future versions. We are aware of it and it is in our plans.
ok guys.
First: Anyone with a linux box, in the js file remove the "/" before clientscript in the source for the css and the loading gif. That will allow those to load.
Second: anybody noticing these display different by default on IE and firefox, It's because the line is added as a class to a break (<br>) instead of a div. Change to a div and all should be well.
I've installed the tabbing. And it looks nice: http://www.mygreatphone.com/forum
Only comments would be:
a) I'd really like it if i could add individual forums to a tab and not just categories.
b) A simple bit of code to show all cats (for my everything tab, instead of having to add everything)
c) The forums no longer show how many are viewing each forum, that would be a really welcome thing to have back, and may even be a deal breaker to whether i use this in the long term.
d)Would be great if it would degrade gracefully, so if no JS or ajax, that it loads the default or other non tabbed style.
Anyway, good for a work-print add-on, but a bit to go before it's perfect (ie. features not working like number viewing and lack of degradation.)
Thank you for the constructive feedback.. much appreciated..
a) This will be possible with the new version (the final release, not the beta). You will be able to use the recent threads module with the beta to pull this off in the mean time.
b) This is an ACP Option with version 2 as well as user group permissions for each tab.
c) This is "fixed" in version 2 as well as Mark Forums Read.
d) as addressed above, this is something that has been in our plans and is being currently looked into as a high priority.
dazkeirle
09-29-2008, 02:42 PM
We agree with you, however, there is currently no checking to see if JS is disabled. This is something that is being looked into for the future versions. We are aware of it and it is in our plans.
Thank you for the constructive feedback.. much appreciated..
a) This will be possible with the new version (the final release, not the beta). You will be able to use the recent threads module with the beta to pull this off in the mean time.
b) This is an ACP Option with version 2 as well as user group permissions for each tab.
c) This is "fixed" in version 2 as well as Mark Forums Read.
d) as addressed above, this is something that has been in our plans and is being currently looked into as a high priority.
Well in that case well done you.
Good on you for wanting to mature the product. If you carry on like this it's going to be really popular.
Look forward to the updates.
ArnyVee
09-29-2008, 06:27 PM
Soon...
WOO HOO! :D
Can't wait for 2.0....I've got my finger on the clicker and I'm ready to install! :)
Morsolo
09-29-2008, 11:16 PM
This is a great mod and it is exact what I've been looking for, but it has one fatal flaw...
Its usability is horrible, yes I'm aware you need a fair amount of knowledge to operate it, which I have no problems with, but still the amount of hoops I need to jump through just to make it look different is ridiculous :(
I've been trying to make it look like the Member Tabs on the vBStyles GreenFox skin, but with no luck.
If anyone would like to edit it themselves and post a new CSS up here I would love you ;)
King Kovifor
09-29-2008, 11:21 PM
This is a great mod and it is exact what I've been looking for, but it has one fatal flaw...
Its usability is horrible, yes I'm aware you need a fair amount of knowledge to operate it, which I have no problems with, but still the amount of hoops I need to jump through just to make it look different is ridiculous :(
I've been trying to make it look like the Member Tabs on the vBStyles GreenFox skin, but with no luck.
If anyone would like to edit it themselves and post a new CSS up here I would love you ;)
I'm not a CSS guy, but 2.0 is much easier to set up - as almost no HTML / PHP knowledge is required because it now has an ACP back end. And YUI Tab View may have a simpler CSS - but I know we've cleaned it up for our specific release.
Hornstar
09-29-2008, 11:36 PM
I'm not a CSS guy, but 2.0 is much easier to set up - as almost no HTML / PHP knowledge is required because it now has an ACP back end. And YUI Tab View may have a simpler CSS - but I know we've cleaned it up for our specific release.
Great because I couldnt get my css looking nice, so i'll just wait for version 2.
Thanks.
Morsolo
09-30-2008, 12:21 AM
I'm not a CSS guy, but 2.0 is much easier to set up - as almost no HTML / PHP knowledge is required because it now has an ACP back end. And YUI Tab View may have a simpler CSS - but I know we've cleaned it up for our specific release.
Sorry if we're not a super cool Mod like yourself *Bows* - But we can't use 2.0 yet :(
So until 2.0 gets out, I guess I'll just have to sit quietly in the corner.
bobster65
09-30-2008, 12:35 AM
Sorry if we're not a super cool Mod like yourself *Bows* - But we can't use 2.0 yet :(
So until 2.0 gets out, I guess I'll just have to sit quietly in the corner.
KK being a MOD has nothing to do with it... he is one of my co-developers, that is why he responds to peoples inqueries..
Version 2 uses the YUI Tab View Component which uses the default Tab View CSS (same one that default vB bases the Profiles off of) the CSS Skin file is all commented, so it is super easy to edit for non CSS Guru's, but built so that Advanced users can also take advantage to customize beyond the basics if they so choose to.
We are just finishing up with the Install Doc. Beta 2.0 will be released by this weekend.
Morsolo
09-30-2008, 01:35 AM
KK being a MOD has nothing to do with it... he is one of my co-developers, that is why he responds to peoples inqueries..
Version 2 uses the YUI Tab View Component which uses the default Tab View CSS (same one that default vB bases the Profiles off of) the CSS Skin file is all commented, so it is super easy to edit for non CSS Guru's, but built so that Advanced users can also take advantage to customize beyond the basics if they so choose to.
We are just finishing up with the Install Doc. Beta 2.0 will be released by this weekend.
I didn't mean it that way, I would have just said we aren't as lucky, but because he was Mod, I decided to pick on that :)
To any other member, I have just said "None of us are as lucky as you" or something.
Sounds great so far though, keep it up, I can't wait for 2.0 ;)
Cust0ms
09-30-2008, 12:07 PM
bobster could You help me with my problems (59th page of this thread).
bobster65
09-30-2008, 01:48 PM
bobster could You help me with my problems (59th page of this thread).
Once I get version 2 released, I'll post a sample on how to do what you want to do with the NON Ajax Version..
jambo_1969
09-30-2008, 03:03 PM
Standard for vbulletin please....
Awesome mod
EricGT
09-30-2008, 09:55 PM
It would be great if we could pull a logged-in user's subscribed forums list into a tab, and only display that tab if the user is logged in and has subscribed to any forums. This would be a great default tab for a logged-in user.
I just installed the mod, BTW, and I love it. i have been working on a similar way to condense the forum listings on the main page, but your solution is more elegant. Thanks. Eric
hilfe-forum
09-30-2008, 10:22 PM
Can you Help?
Error:
Warnung: in_array() [function.in-array]: Wrong datatype for second argument in [path]/includes/functions_forumlist.php(395) : eval()'d code (Zeile 2)
Datenbankfehler in vBulletin 3.7.0:
Invalid SQL:
SELECT
user.username, (user.options & 512) AS invisible, user.usergroupid,
session.userid, session.inforum, session.lastactivity, session.useragent,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid
FROM vb_session AS session
LEFT JOIN vb_user AS user ON(user.userid = session.userid)
WHERE session.lastactivity >
ORDER BY username ASC;
MySQL-Fehler : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY username ASC' at line 8
Fehler-Nr. : 1064
Fehler-Zeit : Wednesday, 01.10.2008 @ 01:16:10
Datum : Wednesday, 01.10.2008 @ 01:16:11
Skript : http://www.hilfe-forum.eu/tabforumhome.php
King Kovifor
09-30-2008, 10:28 PM
It would be great if we could pull a logged-in user's subscribed forums list into a tab, and only display that tab if the user is logged in and has subscribed to any forums. This would be a great default tab for a logged-in user.
I just installed the mod, BTW, and I love it. i have been working on a similar way to condense the forum listings on the main page, but your solution is more elegant. Thanks. Eric
That's not a bad idea. I will see if I can get a module set up to allow this - and if I can I will release it either with 2.0 b2+ or 2.1+ as a default; before that it may only be an addon.
hilfe-forum
09-30-2008, 10:53 PM
Ok i found the Problem.
This Hack dont work with the "Spider Display" Hack.
King Kovifor
09-30-2008, 11:02 PM
Ok i found the Problem.
This Hack dont work with the "Spider Display" Hack.
Thank you for telling us, we will look into a possible fix.
jambo_1969
10-01-2008, 01:59 PM
One question having searched this mammoth thread and not been able to find it...
I've got some members who prefer the old layout (roll eyes) - is there a way I can give them the choice whilst keeping the tabs in place ?
maidos
10-01-2008, 02:27 PM
when the beta is out can we use the beta and upgrade to the stable version with no issue?
Doom Stone
10-01-2008, 03:14 PM
One question having searched this mammoth thread and not been able to find it...
I've got some members who prefer the old layout (roll eyes) - is there a way I can give them the choice whilst keeping the tabs in place ?
With the AJAX 1.5 version, having the tabbed categories on one skin doesn't affect the layout of a different skin. At least not as far as I've gathered from messing around with it for a while. So having multiple skin choices should solve that issue for you.
jambo_1969
10-01-2008, 04:26 PM
With the AJAX 1.5 version, having the tabbed categories on one skin doesn't affect the layout of a different skin. At least not as far as I've gathered from messing around with it for a while. So having multiple skin choices should solve that issue for you.
Cool - thanks for that.
New Style introduced :)
King Kovifor
10-01-2008, 11:21 PM
when the beta is out can we use the beta and upgrade to the stable version with no issue?
Yes. 2.0 is database driven, so only changes may be minor template chagnes for you to make.
Magnumutz
10-02-2008, 07:54 AM
Can the same thing be done with bobster's other mod: https://vborg.vbsupport.ru/showthread.php?t=191106 ?
Cuz that one is purely amazing.
akulion
10-02-2008, 09:38 AM
any ideas when v2 will be out?
Morsolo
10-02-2008, 11:09 AM
People, stop asking when will it be released.
Bobster has already said:
Beta is complete (as far as features/bugs) .. all that's left is install instructions (being drafted now)..
And then:
We are just finishing up with the Install Doc. Beta 2.0 will be released by this weekend.
So if everyone is patient, bobster can roll it out quicker.
Cheers,
- Morsolo
dazkeirle
10-02-2008, 11:51 AM
Originally Posted by dazkeirle View Post
ok guys.
First: Anyone with a linux box, in the js file remove the "/" before clientscript in the source for the css and the loading gif. That will allow those to load.
Second: anybody noticing these display different by default on IE and firefox, It's because the line is added as a class to a break (<br>) instead of a div. Change to a div and all should be well.
I've installed the tabbing. And it looks nice: http://www.mygreatphone.com/forum
Only comments would be:
a) I'd really like it if i could add individual forums to a tab and not just categories.
b) A simple bit of code to show all cats (for my everything tab, instead of having to add everything)
c) The forums no longer show how many are viewing each forum, that would be a really welcome thing to have back, and may even be a deal breaker to whether i use this in the long term.
d)Would be great if it would degrade gracefully, so if no JS or ajax, that it loads the default or other non tabbed style.
Anyway, good for a work-print add-on, but a bit to go before it's perfect (ie. features not working like number viewing and lack of degradation.)
Thank you for the constructive feedback.. much appreciated..
a) This will be possible with the new version (the final release, not the beta). You will be able to use the recent threads module with the beta to pull this off in the mean time.
b) This is an ACP Option with version 2 as well as user group permissions for each tab.
c) This is "fixed" in version 2 as well as Mark Forums Read.
d) as addressed above, this is something that has been in our plans and is being currently looked into as a high priority.
Great news my friend all round.
I have since had another thought that would enhance the product.
The issue with the tabs being there is there's now no longer a front page status showing what threads have been updated and that contain new posts.
So what I'd suggest is instead of say my tabs saying:
Handsets | Networks | Info etc.
They say:
Handsets(2) | Networks(6) | Info
So basically any tabs which contain forums with new posts, the number of new posts is collated and displayed on the actual tab.
Hope that makes sense.
Else the only thing i see as a problem is that the frontpage tabbed section gets all the attention and nobody ever updates the other sections.
Food for thought.
xcingix
10-02-2008, 12:51 PM
thanks. great mod.
how is this with vBSEO?
EricGT
10-02-2008, 05:58 PM
That's not a bad idea. I will see if I can get a module set up to allow this - and if I can I will release it either with 2.0 b2+ or 2.1+ as a default; before that it may only be an addon.
Outstanding. It will be a very popular feature, I think. Thanks for all your hard work on this. Eric
King Kovifor
10-02-2008, 06:20 PM
BETA 2.0 RELEASE DATE ...Information
People, stop asking when will it be released.
Bobster has already said:
And then:
So if everyone sits down and shuts up, he doesn't have to keep checking the thread and we can hope to see it on the weekend.
Cheers,
- Morsolo
This is a post as a moderator and not as a developer. Please tone the post down - some of it wasn't really needed.
Morsolo
10-02-2008, 08:22 PM
This is a post as a moderator and not as a developer. Please tone the post down - some of it wasn't really needed.
:o - Edited. Hopefully the edit is ok?
xcingix
10-03-2008, 08:10 AM
Multiple categories can be under the same tab. You still need to construct a forum bit for each one tho.. so you would do something like
$forumbits2a = construct_forum_bit(13,1,0);
$forumbits2b = construct_forum_bit(14,1,0);
In the instructions document, Tab 3 Sample is set up to display multiple categories, so just take a look at that part of the setup :)
how do i "construct a forum bit for each one" where do i do this?
proxx
10-03-2008, 04:48 PM
Hi,
I installed the 1.5 version.
Do I need to import tfh-wol-plugins.xml ? or is this only for the 1.01 ?
King Kovifor
10-03-2008, 07:25 PM
Hi,
I installed the 1.5 version.
Do I need to import tfh-wol-plugins.xml ? or is this only for the 1.01 ?
Yes, I believe that .xml is for 1.5.
:o - Edited. Hopefully the edit is ok?
Yes, thank you. Just think before you post something like that next time.
Vindictive
10-05-2008, 07:24 PM
Is there a way to do this?
http://i469.photobucket.com/albums/rr58/Vindictive1212/Tabs.jpg
King Kovifor
10-05-2008, 07:54 PM
With some serious hacking yes. TFH was never designed to place the tabs up there.
Vindictive
10-05-2008, 08:03 PM
What version are the demo sites running? Ajax?
Morsolo
10-05-2008, 08:06 PM
With some serious hacking yes. TFH was never designed to place the tabs up there.
Hey, here's a suggestion :)
I imagine this would be rather difficult but it seems nothing is to hard for you guys.
If the new 2.0 has an AdminCP backend, what if you made the mod so you could choose where to place the tabs?
For example:
- Above FORUMDISPLAY (default)
- At very top of site
- Above navbar (Like in vb.org)
- Footer
etc.
That would be awesome, but that's just a suggestion ;)
King Kovifor
10-05-2008, 08:28 PM
What version are the demo sites running? Ajax?
They are both running the non-ajax version.
Hey, here's a suggestion :)
I imagine this would be rather difficult but it seems nothing is to hard for you guys.
If the new 2.0 has an AdminCP backend, what if you made the mod so you could choose where to place the tabs?
For example:
- Above FORUMDISPLAY (default)
- At very top of site
- Above navbar (Like in vb.org)
- Footer
etc.
That would be awesome, but that's just a suggestion ;)
That would be extremely difficult because we would need to use different variables, track them, and open up the possibility of quite a few more template edits then there currently are.
Vindictive
10-05-2008, 11:01 PM
I finally finished adding my own tabs above the navbar.
http://i469.photobucket.com/albums/rr58/Vindictive1212/Tabs2.jpg
Morsolo
10-06-2008, 05:33 AM
That would be extremely difficult because we would need to use different variables, track them, and open up the possibility of quite a few more template edits then there currently are.
A few template edits never killed anyone ;)
Just do what the vBAdManagement does, use variables to control and you can just make template edits and put things like $vbhook[above_navbar_tabs] and $vbhook[above_forumdisplay_tabs] in certain sections.
($vbhook isn't the right thing, I know, lol)
But I'm talking from an end-users point of view, I have no idea how to code any of this. :)
nureeves
10-08-2008, 05:28 AM
I finally finished adding my own tabs above the navbar.
http://i469.photobucket.com/albums/rr58/Vindictive1212/Tabs2.jpg
awesome ...
how to?? how to??? ... share plsss :D :D
Pirat3
10-08-2008, 10:15 PM
Great mod, but I was wondering is it possible to have each tab have its OWN custom theme? So say I clicked on Tab1 it would have THEME1 I would click on TAB2 it would have THEME2, TAB 3 - theme 3, etc...
iduchesne
10-09-2008, 02:34 PM
Installed here http://www.rc-addicts.com
Works great, thanks a bunch. :up:
Magnumutz
10-10-2008, 07:08 AM
It's nice iudchesne... but there's a huge gap between the forum cateogries and the tabs.
ThomasR
10-10-2008, 08:44 AM
No news for the version 2? I thought it will be released this last week end. No problems on my side at all, I'm just impatient to install it since it looks to be the best plugin for vb :p
ArnyVee
10-10-2008, 10:11 AM
I'm chompin' at the bit for 2.0! :D
But, I know it'll be worth the wait....so, I will wait patiently. ;)
S.Younh
10-10-2008, 10:58 AM
Hey guys i had i problem with new beta version 1.5.
I have install it to my test forum. I think the new Version is more simply to install. But i have a problem.
What's the problem? What does i have made fals?
Thanks
jambo_1969
10-10-2008, 11:17 AM
Hey guys i had i problem with new beta version 1.5.
I have install it to my test forum. I think the new Version is more simply to install. But i have a problem.
Pleas look at my test forum and you should see the problems.
Test Forum (http://www.test.wehrmacht-forum.de/forum/)
What's the problem? What does i have made fals?
Thanks
Did you follow the template edits properly ?
S.Younh
10-10-2008, 11:19 AM
Yes i have.
I have alle mad like the install instructions.
n95gps
10-10-2008, 04:07 PM
this mod is grate but i can't install it
i am so confuse
i have followed everything in the read me in the new version 1.5
but all i get is 3 links when i click on them the open y forume ( only the top part) in a white page
my question do i have to reffer back to the old version or what should i do
i am so confused
maybe a more detailed explaaniation is needed for the new version
i mean it so sad that a great mod can't be installed because of our week knowldge
i know its easy for some to follow everything
but can you kindly conceder the rest of the ppl here who know less
thank you so much
myown
10-10-2008, 04:54 PM
Parse error: syntax error, unexpected T_IF in /home/forums/public_html/editpost.php(210) : eval()'d code on line 37
every thing is working fine, but getting this error when some one edit any post. please Help. i am on 3.7.3 pl1.
site link : http://pak.net/
King Kovifor
10-10-2008, 06:23 PM
No news for the version 2? I thought it will be released this last week end. No problems on my side at all, I'm just impatient to install it since it looks to be the best plugin for vb :p
Some real life situations arose that prevented us from completing install instructions.
Parse error: syntax error, unexpected T_IF in /home/forums/public_html/editpost.php(210) : eval()'d code on line 37
every thing is working fine, but getting this error when some one edit any post. please Help. i am on 3.7.3 pl1.
site link : http://pak.net/
I see no problem...
S.Younh
10-10-2008, 07:31 PM
Coul someone help me?
My have described my Problem a few Posts above!
Thank
ThomasR
10-10-2008, 07:43 PM
King Kovifor: yes, it's what I guess. No troubles at all, it's just that I'm impatient to install it!
Morsolo
10-10-2008, 07:56 PM
Some real life situations arose that prevented us from completing install instructions.
:eek: - I hope everything is ok.
bobster65
10-10-2008, 09:42 PM
:eek: - I hope everything is ok.
A very close friend of mine was killed in a terrible car accident... Having had a hard time dealing with it, so my online time has been limited.. Will try and get something out tomorrow if possible.
Morsolo
10-10-2008, 10:07 PM
A very close friend of mine was killed in a terrible car accident... Having had a hard time dealing with it, so my online time has been limited.. Will try and get something out tomorrow if possible.
:( - That's horrible mate... Don't rush anything, you need a break.
Pirat3
10-10-2008, 10:15 PM
Great mod, but I was wondering is it possible to have each tab have its OWN custom theme? So say I clicked on Tab1 it would have THEME1 I would click on TAB2 it would have THEME2, TAB 3 - theme 3, etc...
Any update?
Doom Stone
10-11-2008, 12:19 AM
A very close friend of mine was killed in a terrible car accident... Having had a hard time dealing with it, so my online time has been limited.. Will try and get something out tomorrow if possible.
It is one of the few things that we can only claim to feel for, for we will never know what the feeling is like unless it happens to one of us, god forbid. I sincerely hope that you will be who you were before the tragic incident and henceforth.
I am truly sorry to hear about another persons death.
Magnumutz
10-11-2008, 07:13 PM
A very close friend of mine was killed in a terrible car accident... Having had a hard time dealing with it, so my online time has been limited.. Will try and get something out tomorrow if possible.
I'm very sorry for your loss mate.
My condolences to both you and the family !!
dbembibre
10-12-2008, 12:43 PM
In first place thanks for this great addon.
Any way to make visible the tabs in forumdisplay too ? something like have the tabs always visibles
romanticyao
10-12-2008, 05:35 PM
This one doesn't seem to work with 3.8, any idea?
King Kovifor
10-13-2008, 12:45 AM
This one doesn't seem to work with 3.8, any idea?
What problems are you experiencing exactly?
Ricsca
10-13-2008, 01:22 AM
With firefox works but with internet explorer no. Why?
Demo (http://www.tartaportal.it/forums)
Doom Stone
10-15-2008, 11:48 AM
With firefox works but with internet explorer no. Why?
Demo (http://www.tartaportal.it/forums)
I assume you have fixed the error, as the forum tabs work fine for me in Firefox, Opera and Internet Explorer.
iim having real problems with this
https://vborg.vbsupport.ru/showthread.php?p=1645983#post1645983
please take a look here
if you hava heart youll do it for free, if not i'll pay
ASAP going mad here, dont know how to change which forums you see in each tab?
proxx
10-15-2008, 10:31 PM
I have installed the 1.5 version.
However, I would like to modify the look of the tabs. I want to change the font, make larger, change colors of tabs. Also, would be nice to be able to use an image within a tab.
could you please direct me to the right template to edit for this.
bobster65
10-15-2008, 10:44 PM
I have installed the 1.5 version.
However, I would like to modify the look of the tabs. I want to change the font, make larger, change colors of tabs. Also, would be nice to be able to use an image within a tab.
could you please direct me to the right template to edit for this.
All of that is done by editing the .CSS File
bobster65
10-15-2008, 10:45 PM
Sorry for the delay peeps.. I'm finally back to work and will be getting in touch with KK to finish up a few things so we can get version 2 released...
Brother Malachi
10-15-2008, 11:57 PM
Sorry for the delay peeps.. I'm finally back to work and will be getting in touch with KK to finish up a few things so we can get version 2 released...
Sweet :) Can't wait.
murekhalir
10-16-2008, 05:58 AM
hope things go well with you bobster~
we support you all the way, definetly the coolest mod around.
lowey
10-16-2008, 07:28 AM
What a fantastic modification. Thanks a lot!
Still I'm encountering the following issue, which drives me insane: although I've assigned class="selected" to one of my tabs, it does not open by default when entering the homepage. It's rather always the first tab defined in FORUMHOME, which will open up.
Any ideas on how to fix that? And is there a way of not showing the "retrieving content..."-progress-indicator atall? Thanks again. Keep up the good work! :)
thaker
10-16-2008, 09:37 AM
There is a interesting problem i had:
<!-- Tabbed Forum Home Header Code -->
<link rel="stylesheet" type="text/css" href="/clientscript/tabs/ajaxtabs.css" />
<script type="text/javascript" src="/clientscript/tabs/ajaxtabs.js"> </script>
<!-- /Tabbed Forum Home Header Code -->
There was a point missing:
<!-- Tabbed Forum Home Header Code -->
<link rel="stylesheet" type="text/css" href="./clientscript/tabs/ajaxtabs.css" />
<script type="text/javascript" src="./clientscript/tabs/ajaxtabs.js"> </script>
<!-- /Tabbed Forum Home Header Code -->
It costs me a lot of hours to find this problem and I found no hint in this thread.
Now it works great.
lowey
10-16-2008, 01:57 PM
Hm, this does not help with my issue though. Thanks anyway!
n95gps
10-16-2008, 02:00 PM
bobster65
sorry for your lost
i hope eveything is ok
i lost count on how many times do i keep visiting this thread
thank you so much
can't wait to see the new release 2.0
iim having real problems with this
https://vborg.vbsupport.ru/showthread.php?p=1645983#post1645983
please take a look here
if you hava heart youll do it for free, if not i'll pay
ASAP going mad here, dont know how to change which forums you see in each tab?
PLEASE PLEASE PLEASE HELP!
any suggestions or a detaild breakdown on my problem or coding please help
check that thread
thanks so much ASAP!
if somone could just highlight in like red, the exact part of code to change for changeing the Category? so do a few examples say i want cat 5 then cat 6 then 7........all in seperate tags
pleas ehighlight in another color and break it down
thanks
Brother Malachi
10-16-2008, 06:10 PM
imk, from what I could tell you've installed v1.0. I'd recommend waiting another few days until v2.0 is out...or if you can't wait - or don't want to - then uninstall what you have, then install v1.5 which is much simpler to install with better overall functionality.
THANKS PROBLEM SOLVED.....HOWEVER COULD SOMONE SUGGEST A FIX FOR THIS
WWW.FULLHELP.COM
if you click on one of the cell links e.g. Forum Help.
then it's linked to the forum help cat, but then this hack doenst show up...any reason? or way i can make it so it shows?
Brother Malachi
10-17-2008, 06:45 PM
You're linking directly to the category and not the forumhome[page] which is where the hack works.
You need to change your links to point to index.php instead of forumdisplay.php
I believe there was a way to have a specific tab be active. I just don't remember. Look in the documentation.
You're linking directly to the category and not the forumhome[page] which is where the hack works.
You need to change your links to point to index.php instead of forumdisplay.php
I believe there was a way to have a specific tab be active. I just don't remember. Look in the documentation.
this wont work tho, as it will just view my first cat, not the spercific one
Brother Malachi
10-17-2008, 11:51 PM
Like I said, there should be a way to display a specific tab via the url. index.php?f=id
or something along those lines. Check the documentation.
Actually, I think I'm confusing this mod with another one. It would be best to let bobster answer this for you. Sorry if I confused you.
YsTyle
10-18-2008, 08:43 AM
i installed like you said in the readme file,
but it looks like the CSS and the AJAX does not work.
i uploaded all files.
^make sure the files direct to the uploaded ones, like with me they are /client
but my client is in /forum/client
so you may need to change the paths........
ill wait for Bob then
YsTyle
10-19-2008, 07:46 AM
^make sure the files direct to the uploaded ones, like with me they are /client
but my client is in /forum/client
so you may need to change the paths........
ill wait for Bob then
where should i edit the files?
Pirat3
10-20-2008, 10:33 PM
Great mod, but I was wondering is it possible to have each tab have its OWN custom theme? So say I clicked on Tab1 it would have THEME1 I would click on TAB2 it would have THEME2, TAB 3 - theme 3, etc...
ShawnV
10-21-2008, 02:02 PM
version 2.0 update?
_V
illithid
10-21-2008, 03:18 PM
this wont work tho, as it will just view my first cat, not the spercific one
On your website main page edit the links in the cell to reflect the tab view of each cat... so on your index page for the Coding Help, instead of the link being
http://fullhelp.com/forum/forumdisplay.php?f=6
it should be
http://fullhelp.com/forum/index.php?ajaxTFH=2
I checked you website and recorded each of your cell links, then matched them to your tab links on your forum.. Here is a list of what your links should be when you edit the cell addresses
Community : http://fullhelp.com/forum/index.php?ajaxTFH=0
Forum Help : http://fullhelp.com/forum/index.php?ajaxTFH=1
Coding Help : http://fullhelp.com/forum/index.php?ajaxTFH=2
Design Help : http://fullhelp.com/forum/index.php?ajaxTFH=3
Domain Help : http://fullhelp.com/forum/index.php?ajaxTFH=4
Hosting Help : http://fullhelp.com/forum/index.php?ajaxTFH=5
Content Help : http://fullhelp.com/forum/index.php?ajaxTFH=6
Market Place : http://fullhelp.com/forum/index.php?ajaxTFH=7
Notice that the links are numbered according to the order in which you set them to be displayed.
Wazran
10-22-2008, 01:21 AM
Hey.. I'm using 1.5.0
I'm having probs, here's my forum: http://infodocs.net/~mystt/forum/index.php?styleid=2
Just take a look at it >.<, the tabs don't show. Also when I install 1.0 it says an error with global.
King Kovifor
10-22-2008, 06:42 PM
Hey.. I'm using 1.5.0
I'm having probs, here's my forum: http://infodocs.net/~mystt/forum/index.php?styleid=2
Just take a look at it >.<, the tabs don't show. Also when I install 1.0 it says an error with global.
Check the paths to your JS and CSS.
What about Sarge :(
I'm confused.
bobster65
10-22-2008, 09:35 PM
Great mod, but I was wondering is it possible to have each tab have its OWN custom theme? So say I clicked on Tab1 it would have THEME1 I would click on TAB2 it would have THEME2, TAB 3 - theme 3, etc...
you mean changing the vB style as a whole, or just the Data within the Content DIV?
Pirat3
10-22-2008, 09:41 PM
you mean changing the vB style as a whole, or just the Data within the Content DIV?
I mean it switches themes when I click on a diffrent tab. Like if I clicked on TAB a it would display theme a if I clicked on tab b it would display theme b
bobster65
10-22-2008, 09:48 PM
I mean it switches themes when I click on a diffrent tab. Like if I clicked on TAB a it would display theme a if I clicked on tab b it would display theme b
not sure what a "theme" is. is a "theme" the same thing as a vBulletin Style? If its a vbulletin style that you are wanting to change upon clicking on a tab, I suppose its possible to do that via AJAX....
Wazran
10-22-2008, 10:14 PM
Where can I check the paths?
Here's the code:
<!-- Tabbed Forum Home Header Code -->
<link rel="stylesheet" type="text/css" href="/clientscript/tabs/ajaxtabs.css" />
<script type="text/javascript" src="/clientscript/tabs/ajaxtabs.js"> </script>
<!-- /Tabbed Forum Home Header Code -->
Although, that's the right place. Could someone possibly go into my forum and fix it for me? (Note that is the directory, however, it is located on a /forum directory; does that matter?)
bobster65
10-22-2008, 11:07 PM
Where can I check the paths?
Here's the code:
<!-- Tabbed Forum Home Header Code -->
<link rel="stylesheet" type="text/css" href="/clientscript/tabs/ajaxtabs.css" />
<script type="text/javascript" src="/clientscript/tabs/ajaxtabs.js"> </script>
<!-- /Tabbed Forum Home Header Code -->
Although, that's the right place. Could someone possibly go into my forum and fix it for me? (Note that is the directory, however, it is located on a /forum directory; does that matter?)
Just put the FULL URL Path to the files (in red below)
<!-- Tabbed Forum Home Header Code -->
<link rel="stylesheet" type="text/css" href="http://www.domainname/forum/clientscript/tabs/ajaxtabs.css" />
<script type="text/javascript" src="http://www.domainname/forum/clientscript/tabs/ajaxtabs.js"> </script>
<!-- /Tabbed Forum Home Header Code -->
Wazran
10-22-2008, 11:35 PM
Works like a charm and I love it. Thank you!
Tho, is there a way to make the buttons bigger? Thanks. +Nominated
Pirat3
10-22-2008, 11:51 PM
not sure what a "theme" is. is a "theme" the same thing as a vBulletin Style? If its a vbulletin style that you are wanting to change upon clicking on a tab, I suppose its possible to do that via AJAX....
Yes theme/style same thing :)
Do you know how to do this? I would be perfer to do it the manual way too if I knew how. (My site has pretty high traffic)
nureeves
10-23-2008, 05:10 AM
hello bob,
just wanna say .. can wait for v.2 :)
ArnyVee
10-23-2008, 10:50 AM
LOL....everytime there is a new post, I jump over to this thread to see if 2.0 is released yet! :D
Can't wait either!
squishi
10-23-2008, 11:34 AM
Sorry if this has been asked before in this thread. I have no time to browse through 67 pages.
This mod works very well for me.
What I noticed, though, is that the number of users viewing a forum does no longer show.
Is there a fix for this?
drmitaly
10-23-2008, 01:37 PM
LOL....everytime there is a new post, I jump over to this thread to see if 2.0 is released yet! :D
Can't wait either!
... me too :)
bobster65
10-23-2008, 01:38 PM
Sorry if this has been asked before in this thread. I have no time to browse through 67 pages.
This mod works very well for me.
What I noticed, though, is that the number of users viewing a forum does no longer show.
Is there a fix for this?
This is fixed in the next version which is done, just doing some last minute things and making sure the install instructions cover everything possible..
ArnyVee
10-23-2008, 03:47 PM
WOO HOO! Can't wait! :D
Thanks for the 'teaser' Bobster! ;)
King Kovifor
10-23-2008, 06:45 PM
WOO HOO! Can't wait! :D
Thanks for the 'teaser' Bobster! ;)
Mark forums as read through AJAX (you weren't able to do it) has been fixed in 2.0.
ArnyVee
10-23-2008, 07:05 PM
King...you are truly killin' me here! :D
I can't wait any longer! :)
King Kovifor
10-23-2008, 07:10 PM
King...you are truly killin' me here! :D
I can't wait any longer! :)
It was tempting. lol. Want any more spoilers?
bobster65
10-23-2008, 08:56 PM
Why was my post just like skipped?
its not that it was skipped, I just don't have time right now to trouble shoot version 1.0 when I am trying to get version 2.0 released to everyone.
Maybe someone that has 1.0 installed can give you a hand.... from what I seen of your code, it should not be doing what your screen shots show.
ArnyVee
10-23-2008, 09:06 PM
It was tempting. lol. Want any more spoilers?
Keep 'em comin'! :D
murekhalir
10-23-2008, 09:59 PM
you have no clue i check this thread religiously lol.
cant wait for v.20 thanks much
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.