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)

Cobra-J82 11-29-2008 03:59 PM

No I dont, I was commenting on the posted pics by the mod.

heXagon 11-30-2008 09:26 PM

I wonder how I can fix the issue, that if there is no Javascript enabled (e.g. NoScript in use), how there can the forums be shown, without the actual tabbing. Any ideas? Or is it solved already? Using 1.5 AJAX'ed version.

CHIPIT 12-01-2008 01:05 AM

Quote:

Originally Posted by heXagon (Post 1676027)
I wonder how I can fix the issue, that if there is no Javascript enabled (e.g. NoScript in use), how there can the forums be shown, without the actual tabbing. Any ideas? Or is it solved already? Using 1.5 AJAX'ed version.

I've done this by loading the forums the regular way, along with the ajax tabbed version, wrapping each in a separate div with the ajax by default being set to hidden, and then using javascript to change the ajax's div to visible and the regular version to be hidden. If this isn't fixed in v2.0 then I could see about posting instructions...

Magnumutz 12-01-2008 09:26 AM

You could do it now... 2.0 might take a while longer...

SteamyLightning 12-01-2008 11:58 AM

Quote:

Originally Posted by CHIPIT (Post 1676126)
I've done this by loading the forums the regular way, along with the ajax tabbed version, wrapping each in a separate div with the ajax by default being set to hidden, and then using javascript to change the ajax's div to visible and the regular version to be hidden. If this isn't fixed in v2.0 then I could see about posting instructions...

Yes, please do post instructions.

wmlvb 12-01-2008 12:37 PM

Quote:

Originally Posted by King Kovifor (Post 1674796)
Only 3 people have v2.0: Me, Bree, and Bob. And once directions are written, it will be rereleased into the wild. :)

King,

I have tried to contact you via PM for service for editing my ajax tabs content and also help with customizing the new ajax forumns for my site! Could you please PM me when you get a chance? Thanks

CHIPIT 12-01-2008 05:37 PM

OK, to get the forums to display without javascript...

1) Open your modified FORUMHOME template

2) Find
Code:

<!-- Tabbed Forum Home -->
and below it put
Code:

<div id="show" style="display:none">
3) Find
Code:

<!-- /Tabbed Forum Home  -->
and above it put
Code:

</div>
4) Find
Code:

<!-- /main -->
and above it put
Code:

<div id="hide">
$forumbits
$forumhome_markread_script
</div>

5) Below
Code:

<!-- /main -->
put
Code:

<script type="text/javascript">
                  function showelement(element) {
            if (document.getElementById) {
                document.getElementById(element).style.display = 'block';
            }
            else {
                if (document.layers) {
                    document.element.display = 'block';
                }
                else {
                    document.all.element.style.display = 'block';
                }
            }
        }
        function hideelement(element) {
            if (document.getElementById) {
                document.getElementById(element).style.display = 'none';
            }
            else {
                if (document.layers) {
                    document.element.display = 'none';
                }
                else {
                    document.all.element.style.display = 'none';
                }
            }
        }

showelement('show');
hideelement('hide');
</script>

6) Go to ACP > Styles and Templates > Template Manager > Edit Templates > forumhome > forumhome_level1_nopost and change the conditional to:
Code:

<if condition="(THIS_SCRIPT == 'tabforumhome' AND in_array($forum['forumid'], $GLOBALS[tabcats])) OR THIS_SCRIPT == 'forumdisplay' OR THIS_SCRIPT == 'index'">
This is for the AJAX 1.5 version, though it can be changed to work with v1.0.1. If it doesn't work then double check you did everything right. This is unsupported. Please note doing this will load your forums the regular way along side the ajax version, even if you have javascript enabled, but the regular display will be hidden with javascript.

King Kovifor 12-01-2008 08:02 PM

Quote:

Originally Posted by wmlvb (Post 1676419)
King,

I have tried to contact you via PM for service for editing my ajax tabs content and also help with customizing the new ajax forumns for my site! Could you please PM me when you get a chance? Thanks

I have not received a PM, but I don't do custom work. Bob does though, you might want to try him.

heXagon 12-01-2008 08:07 PM

There need to be changes done to forumhome_forumbit_level1_post / forumhome_forumbit_level1_nopost too, for this to work. Any ideas on that?

CHIPIT 12-01-2008 08:55 PM

Quote:

Originally Posted by heXagon (Post 1676649)
There need to be changes done to forumhome_forumbit_level1_post / forumhome_forumbit_level1_nopost too, for this to work. Any ideas on that?

Fixed, sorry. Seems to work with editing forumhome_level1_nopost only, however if you still encounter any trouble apply step 6 to forumhome_level1_post too.

SteamyLightning 12-01-2008 09:25 PM

The fix didn't seem to work for me. It messes up the display for members with javascript enabled.

CHIPIT 12-01-2008 09:35 PM

Hmm, what browser and a screenshot if possible?

soundbarrierpro 12-02-2008 01:30 PM

Are all three of these necessary to install tabs? If not how do you know which one to use?

Brother Malachi 12-02-2008 04:08 PM

No, you only need the middle one.

GeekStep 12-02-2008 04:24 PM

Thanks for this :)

Works perfectly.

Mesohu 12-02-2008 04:49 PM

Quote:

Originally Posted by GeekStep (Post 1677138)
Thanks for this :)

Works perfectly.

The Ajax Beta Version ?

It doesn't work for me :(


And when you will release the 2.0 version.

Thank you.

GeekStep 12-02-2008 06:37 PM

Quote:

Originally Posted by Mesohu (Post 1677153)
The Ajax Beta Version ?

It doesn't work for me :(


And when you will release the 2.0 version.

Thank you.

No 1.5.

But will this mod affect my seo?

I obviously use vBSEO lol.

Mesohu 12-02-2008 07:16 PM

Quote:

Originally Posted by GeekStep (Post 1677222)
No 1.5.

But will this mod affect my seo?

I obviously use vBSEO lol.

1.5 it's the beta version (AJAX).

Can you give me a link of your site (in private or here).


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

For the coder of this mod ;
I have done it , but the tabs show not all categories that I have putted info [] , it show only 2 first categories.

How I can fix it ?

And when you will release the 2.0 version.


Thank you.

King Kovifor 12-02-2008 08:46 PM

Note: I am working on install instructions now, hopefully with me writing the instructions I will be able to get this released as soon as possible!

murekhalir 12-02-2008 10:24 PM

*prays*.... haha

King Kovifor 12-02-2008 10:34 PM

Quote:

Originally Posted by murekhalir (Post 1677369)
*prays*.... haha

It will be either tonight or tomorrow. The install instructions are done, I'm packaging the file now so that I can do a test installation on our live support forum and bug tracking site for this and our other projects. Once a test install goes good, I will modify the instructions to be a .txt file (or just use my post on the live site for now) and package it up to send to bobster so that he can upload and do the appropriate updates to this thread. :)

Tonight will depend on whether or not Bob is able to steal a few minutes to devote to update this. :)

Tomorrow, for sure.

ArnyVee 12-03-2008 12:15 AM

Yes! :D

King Kovifor 12-03-2008 12:31 AM

Quote:

Originally Posted by ArnyVee (Post 1677419)
Yes! :D

It's tonight. ;)

ArnyVee 12-03-2008 12:34 AM

< Arny passes out from the excitement >

King Kovifor 12-03-2008 12:42 AM

Quote:

Originally Posted by ArnyVee (Post 1677427)
< Arny passes out from the excitement >

* Throws bucket of water on Arny *

We don't want you to miss the release now do we?

King Kovifor 12-03-2008 12:47 AM

It is now, officially, released:

https://vborg.vbsupport.ru/showthread.php?t=197871

Aren 12-03-2008 04:51 AM

Wooooooooooooooooooohooooooooooooo!!!!!

http://www.freesmileys.org/smileys/excited001.gif

ThomasR 12-03-2008 11:01 AM

yyeaaah ! congratulation ! Let's check this link!!

Magnumutz 12-07-2008 07:56 PM

Okay... what happened to v2.0 ?

King Kovifor 12-07-2008 09:31 PM

Quote:

Originally Posted by Magnumutz (Post 1680495)
Okay... what happened to v2.0 ?

https://vborg.vbsupport.ru/showpost....&postcount=164

Itworx4me 12-07-2008 10:53 PM

Quote:

Originally Posted by Magnumutz (Post 1680495)
Okay... what happened to v2.0 ?

means another year to wait.....lol

Megatr0n 12-07-2008 11:10 PM

Why did the other hack end up in the gaveyard?

Question when version 2 goes GOLD will you guys be willing to install it for some users for a price?

Magnumutz 12-08-2008 08:12 AM

That's total BS man... advertising here just to get members over to your site... despicable...

bobster65 12-08-2008 02:26 PM

Quote:

Originally Posted by Magnumutz (Post 1680782)
That's total BS man... advertising here just to get members over to your site... despicable...

No, it is NOT BS and it is not advertising to get people to the site. I could give a crap less if anyone goes there. It is a support site geared towards Beta Testing Mods with PT (Project Tools) for bug tracking (since PT is not an option here at vborg). There is nothing BS about it. If this site allowed members to use Project Tools for beta releases, I'd gladly do that instead, but that isn't going to be happening anytime soon so we came up with our own plan for beta releases, beta testing and bug tracking....

King Kovifor 12-08-2008 08:05 PM

Quote:

Originally Posted by Magnumutz (Post 1680782)
That's total BS man... advertising here just to get members over to your site... despicable...

The site has PT, usergroup permissions and allows us to control how many members and who gets beta products. This provides a better way for us to manage the beta process.

Megatr0n 12-08-2008 08:29 PM

Quote:

Originally Posted by Megatr0n (Post 1680590)
Why did the other hack end up in the gaveyard?

Question when version 2 goes GOLD will you guys be willing to install it for some users for a price?

Someone gonna answer my question, please?

King Kovifor 12-09-2008 12:26 AM

Quote:

Originally Posted by Megatr0n (Post 1681213)
Someone gonna answer my question, please?

1, read Bob's post.
2, not sure.

ArnyVee 12-09-2008 05:49 PM

I think it's smart to rework the bugs out before re-releasing 2.0. There were already WAY too many folks complaining about the issues and rather not rush it and do it right.

KK/Bob, if we are to install 1.5, is it a difficult process to update to 2.0 later? (I couldn't remember what the 'upgrade' instructions detailed, so I just wanted to be clear before installing 1.5)

Or, do you anticipate 2.0 being re-released within the next month?

I've already started to talk up the tabbed forum home (as I've also added the vBadvanced tabbed module (Thanks Bob! :) ) and so they are getting anxious to see it. I can delay them, but just wanted an educated guess so that I can give them a timeframe that we're shooting for to have this 'feature'/'upgrade' on our site.

Thanks for the work you've done guys! It seems that folks here on vB.org sometimes fail to realize that these mods are done for the good of the community and offered FREE as opposed to other scripts out there that have communities which charge an arm and a leg for modifications.

King Kovifor 12-09-2008 06:46 PM

Quote:

Originally Posted by ArnyVee (Post 1681791)
I think it's smart to rework the bugs out before re-releasing 2.0. There were already WAY too many folks complaining about the issues and rather not rush it and do it right.

KK/Bob, if we are to install 1.5, is it a difficult process to update to 2.0 later? (I couldn't remember what the 'upgrade' instructions detailed, so I just wanted to be clear before installing 1.5)

Or, do you anticipate 2.0 being re-released within the next month?

I've already started to talk up the tabbed forum home (as I've also added the vBadvanced tabbed module (Thanks Bob! :) ) and so they are getting anxious to see it. I can delay them, but just wanted an educated guess so that I can give them a timeframe that we're shooting for to have this 'feature'/'upgrade' on our site.

Thanks for the work you've done guys! It seems that folks here on vB.org sometimes fail to realize that these mods are done for the good of the community and offered FREE as opposed to other scripts out there that have communities which charge an arm and a leg for modifications.

Upgrade is basically reverting but as Bob said there is a private beta being held on SLD.org (well, some what public.)

influence 12-10-2008 02:20 AM

great hack


All times are GMT. The time now is 01:53 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.02995 seconds
  • Memory Usage 1,841KB
  • 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
  • (9)bbcode_code_printable
  • (18)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