vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Forum Home Enhancements - [AJAX] Tabbed Forum Home (https://vborg.vbsupport.ru/showthread.php?t=175687)

King Kovifor 10-23-2008 10:36 PM

Quote:

Originally Posted by ArnyVee (Post 1651400)
Keep 'em comin'! :D

It appears that the spoiler box has been glued shut. I can't get any more spoilers to come out! :eek: :p

ShawneyJ 10-23-2008 11:25 PM

wow nice mod indeed ;)

one thing that is annoying is viewing the "whos online list" and see members viewing "forum home", and when you click the link it brings you to tabforumhome.php page, and its a complete mess lol.

will this be fixed or?

King Kovifor 10-24-2008 01:06 AM

I'm not sure what your saying Jaycob. Maybe Bob will understand, but could you explain more?

it-adrianus 10-24-2008 02:08 AM

I don't think that Ajax version could be SEO friendly, as in home source code doesn't appear the main forum index structure.
Non-ajax is absolutely SEO friendly, but not Ajax version.

Doom Stone 10-24-2008 08:02 AM

Quote:

Originally Posted by jaycob (Post 1651465)
wow nice mod indeed ;)

one thing that is annoying is viewing the "whos online list" and see members viewing "forum home", and when you click the link it brings you to tabforumhome.php page, and its a complete mess lol.

will this be fixed or?

You have to change the path of the link to your actual forum home page, such as index.php, I'm afraid I can't quite remember where that was and I don't have time to check at the moment, only on for a quick sec, sorry.

touba 10-24-2008 10:38 PM

hi !

very nice MOD, installed ! can't wait v2.0

a small issue from my part : variable 'users browing forums' doesn't appears anymore through forumhome...

any idea what i did wrong ?

thx

edit: sorry, this issue is already posted... i have to wait next version...

Digital Jedi 10-25-2008 08:17 AM

I don't think this has been asked before, but it's crossed my mind a couple of times and I figure, why not. I notice I can pull pretty much any page into the AJAX version of the tabs. Say, for example, I put downloads.php as one of the tab links, it loads it just fine.

Now, the only problem with that is that since downloads.php uses templates and calls the navbar and header, you get duplicates. That's easily enough fixed by simply removing the $header and $navbar variables from the template. Only problem now, is when people visit a do= page of downloads.php, or any page that uses that same template, it loads a new page with no header and template.

So going the long way around to get to the question, is there an if conditional I could use to hide the navbar and header when loaded via AJAX only?

touba 10-25-2008 08:21 AM

Hi Jedi,

Why not doing as for forum_home by creating a new template resuming the code of download.php without the header, navbar and footer ?

King Kovifor 10-25-2008 05:32 PM

Quote:

Originally Posted by Digital Jedi (Post 1652284)
I don't think this has been asked before, but it's crossed my mind a couple of times and I figure, why not. I notice I can pull pretty much any page into the AJAX version of the tabs. Say, for example, I put downloads.php as one of the tab links, it loads it just fine.

Now, the only problem with that is that since downloads.php uses templates and calls the navbar and header, you get duplicates. That's easily enough fixed by simply removing the $header and $navbar variables from the template. Only problem now, is when people visit a do= page of downloads.php, or any page that uses that same template, it loads a new page with no header and template.

So going the long way around to get to the question, is there an if conditional I could use to hide the navbar and header when loaded via AJAX only?

That's one of the draw backs with the module system I coded for v2. It includes everything - and it requires a separate file to work. I've tried to think of a way to effectively resolve this - but I just haven't had the idea that will work.

Digital Jedi 10-25-2008 06:56 PM

Quote:

Originally Posted by King Kovifor (Post 1652558)
That's one of the draw backs with the module system I coded for v2. It includes everything - and it requires a separate file to work. I've tried to think of a way to effectively resolve this - but I just haven't had the idea that will work.

I was considering just putting the internal downloads links to open in a separate Pop-Up window, thereby forgoing the need for a Navbar, Header and Footer. I'll probably give that a try.

Too bad you can't put some kind of identifier into the templates or file so that it knows if it's being loaded via AJAX or not.

Digital Jedi 10-25-2008 06:57 PM

Quote:

Originally Posted by touba (Post 1652286)
Hi Jedi,

Why not doing as for forum_home by creating a new template resuming the code of download.php without the header, navbar and footer ?

That might work, I'd just have to invest the time into trying it out.

maidos 10-25-2008 07:14 PM

hope you work it out because im also interested having that tab with the downloads.php
from the mod downloadsII

hotwheels 10-25-2008 08:44 PM

Is this working on 3.7.3?

I have tried it and all i get is errors.

Quote:

Database error in vBulletin 3.7.3:

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 vb3session AS session
LEFT JOIN vb3user AS user ON(user.userid = session.userid)
WHERE session.lastactivity >
ORDER BY username ASC;

MySQL Error : 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
Error Number : 1064
Request Date : Saturday, October 25th 2008 @ 05:18:48 PM
Error Date : Saturday, October 25th 2008 @ 05:18:49 PM

Itworx4me 10-25-2008 09:24 PM

Do we have an eta on when the release of 2.0 will be out? I really thought it would have been out by now because of a previous post by Bobbster. :D

hotwheels 10-25-2008 11:08 PM

Quote:

Originally Posted by hilfe-forum (Post 1634273)
Ok i found the Problem.
This Hack dont work with the "Spider Display" Hack.

that was it..........thanks

hotwheels 10-26-2008 01:08 PM

1 Attachment(s)
K, i have been working on this thing for a few hours now and i just can't locate the point where i need to close this space (see attached image).

I know there isn't alot of support for the ajax version right now, but i would really like to get this to look right.

hotwheels 10-26-2008 01:41 PM

Well i finally found it.........If anyone else is looking you need to remove <br style="clear: left" /> from the forumhome.......

King Kovifor 10-26-2008 05:08 PM

Quote:

Originally Posted by Itworx4me (Post 1652654)
Do we have an eta on when the release of 2.0 will be out? I really thought it would have been out by now because of a previous post by Bobbster. :D

No, sorry. Not at this time anymore. :(

Quote:

Originally Posted by hotwheels (Post 1653071)
K, i have been working on this thing for a few hours now and i just can't locate the point where i need to close this space (see attached image).

I know there isn't alot of support for the ajax version right now, but i would really like to get this to look right.

I believe there was a fix for IE a few pages ago... :)

DeXTeR27 10-26-2008 05:23 PM

First off I love this modification as it highly organizes all my larger boards. I have not had any issues till now. Added it to another board and it adds a bar underneath my forums. Not sure how to remove these. Any help would be greatly appreciated. Screenshot attached.

nvm, found it in forumhome_forumbit_level1_nopost

ArnyVee 10-26-2008 10:38 PM

Quote:

Originally Posted by King Kovifor (Post 1653211)
No, sorry. Not at this time anymore. :(

Oh...that's not a good statement :(

Hopefully not too long of a delay.

King Kovifor 10-26-2008 11:26 PM

v2.0 is done. We just need to merge our working copies (there were some parts built locally for easier testing) and finish install instructions. Both are waiting on Bob, but this is a really hard time, so give him a break. :)

ArnyVee 10-27-2008 03:54 AM

We understand....just didn't know the specifics of the hold up. Thanks for letting us know KingKovifor and we'll be waiting patiently for 2.0 :D

Morsolo 10-27-2008 06:37 AM

Quote:

Originally Posted by King Kovifor (Post 1653434)
v2.0 is done. We just need to merge our working copies (there were some parts built locally for easier testing) and finish install instructions. Both are waiting on Bob, but this is a really hard time, so give him a break. :)

Woot, finally :D

Good to hear the great update, don't rush yourselves, I guess Bob is still having a crap time :(

Magnumutz 10-27-2008 11:28 AM

YAY, can't wait to test it out...
I'm being real impatient :p

roymogg 10-27-2008 11:39 AM

Hi Bobster,

You will be getting fed up with this...

I have installed the mod on the test forum no problems - adjusted paths and got the tabs up etc.

I only get the 'requesting content' message with the loading icon.

I have set up three categories 1, 5 and 7 with some forums grouped below.

OK so where's the slip

cheers

RoyMogg

Edit: The issue was quite simple I have a custom style where the mod was installed. This style is now the default and ' allow users to change styles' set to off - all is OK.

Great Hack - installed and nominated

test forum at: www.crosslight.co.uk

ShawneyJ 10-27-2008 11:45 AM

Quote:

Originally Posted by King Kovifor (Post 1651501)
I'm not sure what your saying Jaycob. Maybe Bob will understand, but could you explain more?

Quote:

Originally Posted by Doom Stone (Post 1651671)
You have to change the path of the link to your actual forum home page, such as index.php, I'm afraid I can't quite remember where that was and I don't have time to check at the moment, only on for a quick sec, sorry.

thanks guys, i'm actually not sure where to look lol, as it must be a link in the php files yeah?

cheers.

Doom Stone 10-27-2008 04:05 PM

Took a quick look for you.
You can find the part you need to edit if you go to 'Plugin & Products' in your admin CP, then go to your 'plugin manager' and you are looking for 'Tabbed Forum Home WOL Unknown'.

When you click that and it brings you the edit area, you can find the part that says 'href=\"index.php?{$vbulletin->session->vars['sessionurl_q']}\">Forum Home</a>";' Where index.php is going to be forumhome.php or whatever it is originally, just edit that to link to the main page ie; index.php.

touba 10-27-2008 06:12 PM

Quote:

Originally Posted by hotwheels (Post 1653071)
K, i have been working on this thing for a few hours now and i just can't locate the point where i need to close this space (see attached image).

I know there isn't alot of support for the ajax version right now, but i would really like to get this to look right.

CSS issue...
is this problem same with FireFox ?

robwoelich 10-28-2008 06:20 AM

Pretty sweet, got it working. Straight from the installation code, there was an unnecessary space between the tabs and the tcat... also, customization isn't very documented in regards to changing the tab colors and what not, but you can figure it out if you have the slightest idea what you're doing. :p

Nice work.

ShawneyJ 10-28-2008 08:29 AM

Quote:

Originally Posted by Doom Stone (Post 1653888)
Took a quick look for you.
You can find the part you need to edit if you go to 'Plugin & Products' in your admin CP, then go to your 'plugin manager' and you are looking for 'Tabbed Forum Home WOL Unknown'.

When you click that and it brings you the edit area, you can find the part that says 'href=\"index.php?{$vbulletin->session->vars['sessionurl_q']}\">Forum Home</a>";' Where index.php is going to be forumhome.php or whatever it is originally, just edit that to link to the main page ie; index.php.

thanks m8 will look after work ;)

Cobra-J82 10-28-2008 09:53 PM

Looks like we have to copy the UPLOAD folder content to the Forum root and to the root too in order to get a 100% result.

Cobra-J82 10-29-2008 12:31 AM

Hi Bobster56
I have noticed in the demo websites you gave
"DEMO: www.bbwforums.net or www.namepros.com"
that when we click on the Tabs it doesnt Show the .gif and Request Content
and the Categories display fast as soon as we click on the tabs.

But with me and other guys here, we have to wait for the Request to go,
I Removed the gif and Request Content text from the ajaxtabs.js, it loads the content now only but it takes like 2 to 3 seconds to load the new content.
Keeping in mind I have a very small forum with very less categories compared to the demos u gave.

So Please is there a way to make the instance fast just like the demos, like the content shows immediatly as we click on the tab.

Thanks.

Brother Malachi 10-29-2008 02:58 AM

The demos are v1.0 which isn't AJAX. In 1.0 all the tab content is loaded with the page. Version 1.5 = AJAX in which tabs are loaded upon clicking on them.

Cobra-J82 10-29-2008 03:58 AM

<font color="Red">Sorry HammerHead I miss Understood you.
I think 1.0 Is What I Should Try Now.
</font>

I know Man.
Im talkin about the AJAX 1.5
Thanks any way.

Magnumutz 10-29-2008 11:53 AM

1.0 is also pretty good :)

Cobra-J82 10-30-2008 09:41 AM

Okay
I Made a Nice Combination
I have the 1.01 running but with the 1.5 look/Design.
I Feeeeel Good :)

But one question
How to Make it change with MouseOver rather then click?

Magnumutz 10-30-2008 11:59 AM

I don't know, but that's a great idea :)

Brother Malachi 11-02-2008 03:42 PM

Any updates on v2.0? :P

Magnumutz 11-02-2008 06:39 PM

It's been quite a while since it's been announced v2...
We'd like at least a "We're still merging our products" message :p

bobster65 11-03-2008 12:51 PM

Quote:

Originally Posted by Magnumutz (Post 1658033)
It's been quite a while since it's been announced v2...
We'd like at least a "We're still merging our products" message :p

ya, that's my bad.. I thought I would have more time, but I've been working 15+ hr days and have just been burned out after long hrs and have not had time to wrap up the last little things from release... I found one minor glitch and want to fix that before release...

Thanks for being patient!


All times are GMT. The time now is 09:44 PM.

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

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

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

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