vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - Everywhere Sidebar 4 VB4 (https://vborg.vbsupport.ru/showthread.php?t=233871)

Bonjax 07-23-2011 12:05 AM

Installed Everywhere Sidebar and it looks good. One thing we'd like it to do is have it be a color other than the default gray but it won't co-operate. All it will do is still gray.

Any ideas?

HipHopStan.com 07-28-2011 08:52 PM

Quote:

Originally Posted by Octavius. (Post 2218722)
Alright I figured out what was slowing my sidebar down the most.

Show ESB Onload
Show ESB after page load.

^^^This option is on by default. I turned it off and now my pages load instantly.

Why is that even needed?

wow... ur right... that option definitely adds to the load time

Bunni U 07-28-2011 09:54 PM

Quote:

Originally Posted by HipHopStan.com (Post 2226196)
wow... ur right... that option definitely adds to the load time

hmmm that option, for what ever silly reason, catches the ESB hook "parse_templates"
PHP Code:

if ($vbulletin->options['bbactive'] and $vbulletin->options['esidebar_switch'])$bbandSBactive=1;
if (
$bbandSBactive){
if(
$vboptions['storecssasfile']){
$tempside='<link rel="stylesheet" type="text/css" href="\' . $vbcsspath . \'forumhome-rollup.css" />';
}else{
$tempside='<link rel="stylesheet" type="text/css" href="\' . $vbcsspath . \'sidebar.css,forumbits.css,forumhome.css,tagcloud.css,widgets.css,options.css" />';
if(
$vbulletin->options['esidebar_onload'] and in_array(THIS_SCRIPT, array('index''forumdisplay''showthread''newreply''editpost''vbcms''usercp''member''private''search''album''faq''calendar''list''profile''subscription')))
$tempside.='<style>#sidebar_container{display:none;}#content_container{display:none;}</style>';
$tempside.='<!--[if IE 6]><link rel="stylesheet" type="text/css" href="\' . $vbcsspath . \'forumbits-ie.css" /><![endif]-->';
$tempside.='<!--[if lt IE 8]><link rel="stylesheet" type="text/css" href="\' . $vbcsspath . \'forumbits-ie.css,sidebar-ie.css" /><![endif]-->';
}
$sidebarext_search '$final_rendered = \'\''
$sidebarext_replace =  '$final_rendered=\''.$tempside.'\'';               
$vbulletin->templatecache['headinclude_bottom'] = str_replace($sidebarext_search$sidebarext_replace$vbulletin->templatecache['headinclude_bottom']);
    } 


for my forum line 9 of that hook:
PHP Code:

$tempside.='<style>#sidebar_container{display:none;}#content_container{display:none;}</style>'

applied those display:none css styles to both the sidebar and all forum content, causing all content to be hidden, for what ever reason, updating from 1.4.3.1 to 1.4.3.3 caused that display:none style to not be removed (assuming it was supposed to be removed when the page loaded). This resulted in all correlating pages to be empty vb pages (had header and footer but nothing else).

Interestingly, the aforementioned functionality worked correctly when the forums were disabled via VB settings-> Forum disabled. And ceased to work with the above observations once the forum was enabled.

Perhaps our boards differ from others in that our main content has the content_container class, so perhaps functionality that was only ment for ESB was also being applied to all site content and thus my board was the only one that encountered such problems.


In regards to your finding, Ill assume that this "Show ESB Onload" option, causes ESB to hide your page results, until everything is loaded. So, in essence you are just seeing the page load now in the same amount of time, but now you can see it loading. Where-as before page content was hidden until the page finished loading.

almannai 07-29-2011 04:47 AM

Quote:

Originally Posted by HipHopStan.com (Post 2226196)
wow... ur right... that option definitely adds to the load time

Quote:

Originally Posted by Bunni U (Post 2226218)
hmmm that option, for what ever silly reason, catches the ESB hook "parse_templates"
PHP Code:

if ($vbulletin->options['bbactive'] and $vbulletin->options['esidebar_switch'])$bbandSBactive=1;
if (
$bbandSBactive){
if(
$vboptions['storecssasfile']){
$tempside='<link rel="stylesheet" type="text/css" href="\' . $vbcsspath . \'forumhome-rollup.css" />';
}else{
$tempside='<link rel="stylesheet" type="text/css" href="\' . $vbcsspath . \'sidebar.css,forumbits.css,forumhome.css,tagcloud.css,widgets.css,options.css" />';
if(
$vbulletin->options['esidebar_onload'] and in_array(THIS_SCRIPT, array('index''forumdisplay''showthread''newreply''editpost''vbcms''usercp''member''private''search''album''faq''calendar''list''profile''subscription')))
$tempside.='<style>#sidebar_container{display:none;}#content_container{display:none;}</style>';
$tempside.='<!--[if IE 6]><link rel="stylesheet" type="text/css" href="\' . $vbcsspath . \'forumbits-ie.css" /><![endif]-->';
$tempside.='<!--[if lt IE 8]><link rel="stylesheet" type="text/css" href="\' . $vbcsspath . \'forumbits-ie.css,sidebar-ie.css" /><![endif]-->';
}
$sidebarext_search '$final_rendered = \'\''
$sidebarext_replace =  '$final_rendered=\''.$tempside.'\'';               
$vbulletin->templatecache['headinclude_bottom'] = str_replace($sidebarext_search$sidebarext_replace$vbulletin->templatecache['headinclude_bottom']);
    } 


for my forum line 9 of that hook:
PHP Code:

$tempside.='<style>#sidebar_container{display:none;}#content_container{display:none;}</style>'

applied those display:none css styles to both the sidebar and all forum content, causing all content to be hidden, for what ever reason, updating from 1.4.3.1 to 1.4.3.3 caused that display:none style to not be removed (assuming it was supposed to be removed when the page loaded). This resulted in all correlating pages to be empty vb pages (had header and footer but nothing else).

Interestingly, the aforementioned functionality worked correctly when the forums were disabled via VB settings-> Forum disabled. And ceased to work with the above observations once the forum was enabled.

Perhaps our boards differ from others in that our main content has the content_container class, so perhaps functionality that was only ment for ESB was also being applied to all site content and thus my board was the only one that encountered such problems.


In regards to your finding, Ill assume that this "Show ESB Onload" option, causes ESB to hide your page results, until everything is loaded. So, in essence you are just seeing the page load now in the same amount of time, but now you can see it loading. Where-as before page content was hidden until the page finished loading.

Ok this option added for future uses and because some members requested it. I see most people don't like it. In the next update I will make sure that this option default will be turend off. But sure this option is not added for SILLY reason.

This mod has a lot of options and a lot of my time spent on it so it want hurt if you spend some time setting the options of this mod to suit your forum. This is not this mod fault.

Loversama 07-29-2011 09:08 AM

1 Attachment(s)
I am having some problems with the sidebar showing on my articals.php page (which is my homepage), I have included my file in the post, can someone tell me why the sidebar isnt showing, I have done all the necessary template edits, its driving me insane :confused:



EDIT: SOLVED

I looked into it again and the SHELL_BLANK template needs editing also :)

almannai 07-29-2011 07:06 PM

Quote:

Originally Posted by Loversama (Post 2226349)
I am having some problems with the sidebar showing on my articals.php page (which is my homepage), I have included my file in the post, can someone tell me why the sidebar isnt showing, I have done all the necessary template edits, its driving me insane :confused:



EDIT: SOLVED

I looked into it again and the SHELL_BLANK template needs editing also :)

Thank you for sharing this

djbaxter 07-31-2011 05:04 PM

1 Attachment(s)
In a Forum Only version 4.1.5 test installation, I'm using an HTML block for the sidebar.

When I install ESB, it displays the style chooser and hides the actuial sidebar. See before and after screenshots.

almannai 07-31-2011 05:20 PM

Quote:

Originally Posted by djbaxter (Post 2227304)
In a Forum Only version 4.1.5 test installation, I'm using an HTML block for the sidebar.

When I install ESB, it displays the style chooser and hides the actuial sidebar. See before and after screenshots.

Can I see your block html content?

djbaxter 07-31-2011 05:26 PM

Quote:

Originally Posted by almannai (Post 2227313)
Can I see your block html content?

Sure:

HTML Code:

<!-- SIDEBAR -->
<div id="sidebarwrap">
<div class="side">
<div id="sidebar2">
<ul>
<li><b><font face="Arial" font color="#ff9933">Featured 5 Star Programs</font></b><br />
    <ul>
<li><a href="http://www.empyremedia.com/?r=100040">Empyre Media (Network)</a></li>
<li><a href="http://www.5staraffiliateprograms.com/luckylocal">LuckyLocal <font face="Arial">(Local Shopping)</font></a> <sup><font face="Arial" font color="#ff9933" font size="1">New!</font></sup></li>
<li><a href="http://www.5staraffiliateprograms.com/revenuewire">RevenueWire (Software)</a></li>
<li><a href="http://www.5staraffiliateprograms.com/cpaway">CPAway (Network)</a></li>
<li><a href="http://advertising-recruiting.5staraffiliateprograms.com/recruitment.html"><font color="#ff9933">Feature YOUR Program Here</font></a></li>
    </ul>
</li>
<br />
<li><b><font face="Arial" font color="#ff9933">5 Star Programs (Sponsors)</font></b>
    <ul>
<li><a href="http://www.5staraffiliateprograms.com/bidhere">BidHere (Auction)</a></li>
<li><a target="_blank" href="http://www.5staraffiliateprograms.com/wealthyaffiliate">Wealthy Affiliate (Training)</a></li>
<li><a href="http://www.5staraffiliateprograms.com/datingaffiliate">Singlesnet.com (Dating)</a></li>
<li><a href="http://advertising-recruiting.5staraffiliateprograms.com/recruitment.html"><font color="#ff9933"><strong>YOUR Program HERE!</strong></font></a></li>

<br />
<li class="center"><strong><font size="2" face="Arial" font color="#006699">The free forum support we<br />
provide is made possible by the 5 Star clients above. Please visit our sponsors.</font></strong></li>

<br />
<li><b><font face="Arial" font color="#ff9933"><a href="http://affiliate-blogs.5staraffiliateprograms.com/disclosure-policy">Advertising Disclosure Policy</a></font></b></li>
 <br />
 
    </ul>
</li>
 
<li><b><font face="Arial" font color="#ff9933">Most Popular</font></b>
    <ul>
        <li><a href="http://affiliate-blogs.5staraffiliateprograms.com/">5 Star Affiliate <strong>BLOG</strong></a></li>
        <li><a href="http://affiliate-marketing-forums.5staraffiliateprograms.com/">5 Star <strong>FORUM</strong></a></li>
        <li><a href="http://affiliate-directory.5staraffiliateprograms.com/">5 Star Affiliate <strong>DIRECTORY</strong></a></li>
        <li><a href="http://feeds.feedburner.com/AffiliateMarketingBlogsSeoBlogs" class="img"><img src="http://www.5staraffiliateprograms.com/images/rssbutton.gif" alt="affiliate news feed"align="left" hspace="1" /></a><a href="http://feeds.feedburner.com/AffiliateMarketingBlogsSeoBlogs">&nbsp;Blog RSS Feed</a></li>
        <li><a href="http://feeds.feedburner.com/5StarAffiliateForums" class="img"><img src="http://www.5staraffiliateprograms.com/images/rssbutton.gif" alt="affiliate marketing forum news feed"align="left" hspace="1" /></a><a href="http://feeds.feedburner.com/5StarAffiliateForums">&nbsp;Forum RSS Feed</a></li>
<li><a href="http://twitter.com/LindaBuquet">Twitter 5 Star Affiliate Blog</a></li>
        <li><a href="http://twitter.com/affiliateforums">Twitter 5 Star Affiliate Forum</a></li>
          </ul>
</li>
 
 <br />
 
<li><b><font face="Arial" font color="#ff9933">Affiliate Resources</font></b>
    <ul>
        <li><a href="http://affiliate-directory.5staraffiliateprograms.com/">Top 50 Affiliate Directory</a></li>
<li><a target="_blank" href="http://www.5staraffiliateprograms.com/wealthyaffiliate">Wealthy Affiliate (Ad)</a></li>
<li><a target="_blank" href="http://www.sitesell.com/revenue10.html">Affiliate Software (Ad)</a></li>
<li><a target="_blank" href="http://affiliatemarketing.sitesell.com/revenue10.html">Learn Affiliate Marketing (Ad)</a></li>

</ul>
</li>
<br />
<li><b><font face="Arial" font color="#ff9933">Merchant/AM  Resources</font></b>
    <ul>
<li><a href="http://advertising-recruiting.5staraffiliateprograms.com/recruitment.html">Affiliate Recruiting & PR</a></li>
        <li><a href="http://www.5staraffiliateprograms.com/trackingsoftware.html">Affiliate Tracking Solutions</a></li>
        <li><a href="http://affiliate-marketing-forums.5staraffiliateprograms.com/merchant-affiliate-manager-discussions/"> Affiliate Manager Forums</a></li>
 
    </ul>
</li>
<br />
<li><b><font face="Arial" font color="#ff9933">Free Consultation</font></b>
    <ul>
<li><font color="#006699"><strong>Merchants Only - Click For</strong><br />
          <strong><a href="http://advertising-recruiting.5staraffiliateprograms.com/recruitment.html"><font color="#ff9933">Free Phone Consultation</font></a></strong></li>
 
<br />
 
<li class="center"><a href="http://www.affiliatemarketingbuzz.com/" class="img"><img src="http://www.5staraffiliateprograms.com/images/ambuzzbutton149.jpg" alt="" /></a></li>
 
</ul>
</li>
</ul>
 
</div><!-- end sidebar 2 -->
<div class="clear side-bottom"></div>
</div>
</div>
<!-- END SIDEBAR -->


almannai 07-31-2011 05:39 PM

Quote:

Originally Posted by djbaxter (Post 2227315)
Sure:

HTML Code:

<!-- SIDEBAR -->
<div id="sidebarwrap">
<div class="side">
<div id="sidebar2">
<ul>
<li><b><font face="Arial" font color="#ff9933">Featured 5 Star Programs</font></b><br />
    <ul>
<li><a href="http://www.empyremedia.com/?r=100040">Empyre Media (Network)</a></li>
<li><a href="http://www.5staraffiliateprograms.com/luckylocal">LuckyLocal <font face="Arial">(Local Shopping)</font></a> <sup><font face="Arial" font color="#ff9933" font size="1">New!</font></sup></li>
<li><a href="http://www.5staraffiliateprograms.com/revenuewire">RevenueWire (Software)</a></li>
<li><a href="http://www.5staraffiliateprograms.com/cpaway">CPAway (Network)</a></li>
<li><a href="http://advertising-recruiting.5staraffiliateprograms.com/recruitment.html"><font color="#ff9933">Feature YOUR Program Here</font></a></li>
    </ul>
</li>
<br />
<li><b><font face="Arial" font color="#ff9933">5 Star Programs (Sponsors)</font></b>
    <ul>
<li><a href="http://www.5staraffiliateprograms.com/bidhere">BidHere (Auction)</a></li>
<li><a target="_blank" href="http://www.5staraffiliateprograms.com/wealthyaffiliate">Wealthy Affiliate (Training)</a></li>
<li><a href="http://www.5staraffiliateprograms.com/datingaffiliate">Singlesnet.com (Dating)</a></li>
<li><a href="http://advertising-recruiting.5staraffiliateprograms.com/recruitment.html"><font color="#ff9933"><strong>YOUR Program HERE!</strong></font></a></li>

<br />
<li class="center"><strong><font size="2" face="Arial" font color="#006699">The free forum support we<br />
provide is made possible by the 5 Star clients above. Please visit our sponsors.</font></strong></li>

<br />
<li><b><font face="Arial" font color="#ff9933"><a href="http://affiliate-blogs.5staraffiliateprograms.com/disclosure-policy">Advertising Disclosure Policy</a></font></b></li>
 <br />
 
    </ul>
</li>
 
<li><b><font face="Arial" font color="#ff9933">Most Popular</font></b>
    <ul>
        <li><a href="http://affiliate-blogs.5staraffiliateprograms.com/">5 Star Affiliate <strong>BLOG</strong></a></li>
        <li><a href="http://affiliate-marketing-forums.5staraffiliateprograms.com/">5 Star <strong>FORUM</strong></a></li>
        <li><a href="http://affiliate-directory.5staraffiliateprograms.com/">5 Star Affiliate <strong>DIRECTORY</strong></a></li>
        <li><a href="http://feeds.feedburner.com/AffiliateMarketingBlogsSeoBlogs" class="img"><img src="http://www.5staraffiliateprograms.com/images/rssbutton.gif" alt="affiliate news feed"align="left" hspace="1" /></a><a href="http://feeds.feedburner.com/AffiliateMarketingBlogsSeoBlogs">&nbsp;Blog RSS Feed</a></li>
        <li><a href="http://feeds.feedburner.com/5StarAffiliateForums" class="img"><img src="http://www.5staraffiliateprograms.com/images/rssbutton.gif" alt="affiliate marketing forum news feed"align="left" hspace="1" /></a><a href="http://feeds.feedburner.com/5StarAffiliateForums">&nbsp;Forum RSS Feed</a></li>
<li><a href="http://twitter.com/LindaBuquet">Twitter 5 Star Affiliate Blog</a></li>
        <li><a href="http://twitter.com/affiliateforums">Twitter 5 Star Affiliate Forum</a></li>
          </ul>
</li>
 
 <br />
 
<li><b><font face="Arial" font color="#ff9933">Affiliate Resources</font></b>
    <ul>
        <li><a href="http://affiliate-directory.5staraffiliateprograms.com/">Top 50 Affiliate Directory</a></li>
<li><a target="_blank" href="http://www.5staraffiliateprograms.com/wealthyaffiliate">Wealthy Affiliate (Ad)</a></li>
<li><a target="_blank" href="http://www.sitesell.com/revenue10.html">Affiliate Software (Ad)</a></li>
<li><a target="_blank" href="http://affiliatemarketing.sitesell.com/revenue10.html">Learn Affiliate Marketing (Ad)</a></li>

</ul>
</li>
<br />
<li><b><font face="Arial" font color="#ff9933">Merchant/AM  Resources</font></b>
    <ul>
<li><a href="http://advertising-recruiting.5staraffiliateprograms.com/recruitment.html">Affiliate Recruiting & PR</a></li>
        <li><a href="http://www.5staraffiliateprograms.com/trackingsoftware.html">Affiliate Tracking Solutions</a></li>
        <li><a href="http://affiliate-marketing-forums.5staraffiliateprograms.com/merchant-affiliate-manager-discussions/"> Affiliate Manager Forums</a></li>
 
    </ul>
</li>
<br />
<li><b><font face="Arial" font color="#ff9933">Free Consultation</font></b>
    <ul>
<li><font color="#006699"><strong>Merchants Only - Click For</strong><br />
          <strong><a href="http://advertising-recruiting.5staraffiliateprograms.com/recruitment.html"><font color="#ff9933">Free Phone Consultation</font></a></strong></li>
 
<br />
 
<li class="center"><a href="http://www.affiliatemarketingbuzz.com/" class="img"><img src="http://www.5staraffiliateprograms.com/images/ambuzzbutton149.jpg" alt="" /></a></li>
 
</ul>
</li>
</ul>
 
</div><!-- end sidebar 2 -->
<div class="clear side-bottom"></div>
</div>
</div>
<!-- END SIDEBAR -->


just change all <ul> and <li> to capital letters

djbaxter 07-31-2011 05:48 PM

That works. Odd restriction but it works. Thanks. :)

Tortikova 08-02-2011 03:17 PM

Hello. I have problem.

I put in block_html this code:

PHP Code:

<LI>test</LI

or
PHP Code:

test 

And got in page double "test" word:
PHP Code:

test
test 

:(

------

But if i put
PHP Code:

<li>test</li

I don't see word" test" on page :(

Do you know, how i get only one word "test" with li tags?
PHP Code:

<li>test</li


almannai 08-02-2011 03:30 PM

Quote:

Originally Posted by djbaxter (Post 2227322)
That works. Odd restriction but it works. Thanks. :)

Its a workaround and not limitations

Quote:

Originally Posted by Tortikova (Post 2228198)
Hello. I have problem.

I put in block_html this code (big LI):

PHP Code:

<LI>test</LI

And got in page double "text" word:
PHP Code:

test
test 

:(

------

But if i put
PHP Code:

<li>test</li

I don't see word" text" on page :(

Do you know, how i get only one word "text" with li tags:
PHP Code:

<li>text</li


have you tried
PHP Code:

<UL><LI>test</LI></UL


Tortikova 08-02-2011 03:32 PM

Quote:

Originally Posted by almannai (Post 2228201)
have you tried
PHP Code:

<UL><LI>test</LI></UL


Appear "test test" again :(

Tortikova 08-02-2011 03:57 PM

It's ok now. I disable option:
Quote:

Block Configuration Switch

almannai 08-02-2011 07:18 PM

Quote:

Originally Posted by Tortikova (Post 2228220)
It's ok now. I disable option:

No prob

webgroup 08-04-2011 01:06 AM

How can I buy the paid version?

CrystaStarLight 08-04-2011 01:39 AM

Hi this is a great mod! I did notice that the template sidebarext_temp isn't cached though. I was wondering if that was intentional, or should I add extra code for it to be cache to allow for faster loading time? Thanks!

ngocol 08-04-2011 02:46 AM

sorry to ask , can i show only several block on my forumhome not all the block ? and how to do it ?

almannai 08-04-2011 07:31 AM

Quote:

Originally Posted by webgroup (Post 2229028)
How can I buy the paid version?

you can order here
http://vbfixer.com/posting.php?mode=post&f=5

Quote:

Originally Posted by CrystaStarLight (Post 2229039)
Hi this is a great mod! I did notice that the template sidebarext_temp isn't cached though. I was wondering if that was intentional, or should I add extra code for it to be cache to allow for faster loading time? Thanks!

No not intentional I think you can do that with no prob. Let us know how it goes
Quote:

Originally Posted by ngocol (Post 2229067)
sorry to ask , can i show only several block on my forumhome not all the block ? and how to do it ?

Yes you can. It is all explained in the thread.
see
Optional steps for setting different blocks for different forums and pages

Msfantastico 08-06-2011 11:57 PM

This seems to make my forum load slowly why is that thanks

Brian Cruz 08-07-2011 03:30 AM

I'm running into an issue where turning on Everywhere Sidebar causes the Group Discussions forum block to disappear. I'm not quite sure what to do about it since I do want to promote the groups. Any advice on what I can do to fix this?

webgroup 08-07-2011 07:02 AM

Quote:

Originally Posted by Brian Cruz (Post 2230374)
I'm running into an issue where turning on Everywhere Sidebar causes the Group Discussions forum block to disappear. I'm not quite sure what to do about it since I do want to promote the groups. Any advice on what I can do to fix this?

Same here

barros2 08-07-2011 08:58 AM

Problem with Everywhere side bar is that for some reason it blocks out the forum div from loading first. It's extremely annoying I really want to keep using this feature as I use this sidebar for ads and they are vital for my forum upkeep. However for some reason their is a massive problem with loading time. And yes I have disabled the plug in to test, the forum loads on average 84% faster if the plug is disabled.

So I request is it possible to also get a source outside the plug in system available for the more advanced users of your hack? by the means of a php include of the code .php file? That would take care of this problem right away. Either that or please for the sake of the useability of this hack fix the issue of the delayed call of the main content.

PS if you would add the above feature in the Gold version, consider me a customer.

almannai 08-07-2011 10:12 AM

Quote:

Originally Posted by Msfantastico (Post 2230322)
This seems to make my forum load slowly why is that thanks

I've discussed this before..
You need to be wise in setting blocks. Somebody will sett all sort of blocks everywhere in the forum that defenitly will slow down your pages loading. The mod has a lot of options that alows you to set different block on different forum/page that will control load speed.

Quote:

Originally Posted by Brian Cruz (Post 2230374)
I'm running into an issue where turning on Everywhere Sidebar causes the Group Discussions forum block to disappear. I'm not quite sure what to do about it since I do want to promote the groups. Any advice on what I can do to fix this?

Quote:

Originally Posted by webgroup (Post 2230418)
Same here

Can I see a screen shot? Also please follow support instructions

To Get Support:
  • Hit installed link.
  • You have to put your website link.
  • If you include a screenshot you will get a better support.
Quote:

Originally Posted by barros2 (Post 2230440)
Problem with Everywhere side bar is that for some reason it blocks out the forum div from loading first. It's extremely annoying I really want to keep using this feature as I use this sidebar for ads and they are vital for my forum upkeep. However for some reason their is a massive problem with loading time. And yes I have disabled the plug in to test, the forum loads on average 84% faster if the plug is disabled.

So I request is it possible to also get a source outside the plug in system available for the more advanced users of your hack? by the means of a php include of the code .php file? That would take care of this problem right away. Either that or please for the sake of the useability of this hack fix the issue of the delayed call of the main content.

PS if you would add the above feature in the Gold version, consider me a customer.

Of course on the gold is much advanced but this has been discussed before you need to disable mod load after page loading form mod options

Thank you

Brian Cruz 08-07-2011 06:27 PM

The URL is http://www.toonzone.net/forums/

With ESB On.

With ESB Off.

Thanks for your help.

barros2 08-07-2011 07:15 PM

Quote:


Of course on the gold is much advanced but this has been discussed before you need to disable mod load after page loading form mod options

Thank you
Your absolutely right, I am very sorry for bringing it up again. Thank you for pointing this out to me. Problem resolved. Will buy your mod to support it :)

almannai 08-08-2011 01:47 PM

Quote:

Originally Posted by Brian Cruz (Post 2230590)
The URL is http://www.toonzone.net/forums/

With ESB On.

With ESB Off.

Thanks for your help.

You are right Brian

This bug has been fixed in the Gold but not yet in here

It will be fixed with other fixes in the next update

Cheers

alhindasi 08-08-2011 03:29 PM

حبوووب شو صار عن موضوع الهاك مراقبة المشرفين

almannai 08-08-2011 04:04 PM

Quote:

Originally Posted by alhindasi (Post 2230930)
حبوووب شو صار عن موضوع الهاك مراقبة المشرفين

ارسلت لك اقتراح لكنك لم ترد علي
سوف ابعثلك رسالة مرة اخرى

I will email you now

Brian Cruz 08-08-2011 04:04 PM

Quote:

Originally Posted by almannai (Post 2230883)
You are right Brian

This bug has been fixed in the Gold but not yet in here

It will be fixed with other fixes in the next update

Cheers

Thank you very much for the quick response.

go4it 08-10-2011 03:32 AM

i hope will be a new virsion

almannai 08-10-2011 10:11 AM

Quote:

Originally Posted by go4it (Post 2231659)
i hope will be a new virsion

Sure...
It will be updated as soon as I got enough time

FlashJim 08-10-2011 03:01 PM

Is there a way to get a block *above* the rotating banner? When I enable the rotating banner it jumps above the other blocks.

almannai 08-10-2011 03:21 PM

Quote:

Originally Posted by FlashJim (Post 2231842)
Is there a way to get a block *above* the rotating banner? When I enable the rotating banner it jumps above the other blocks.

What is your website address? and what Gold version you have?

ngocol 08-13-2011 03:42 PM

I am using default sidebox form VB and change to (362), and when i install esb ,i change width of ESB setting deferent from my VB sidebox (190) , and it show the ESB width on my FORUM HOME.

can i used defferent width for ESB sidebox so if i set on my forum home it will use width form vb sidebox (362) . but if im in forum display / threat it use esb (190). ?

thanks sory my english bad

almannai 08-13-2011 06:25 PM

Quote:

Originally Posted by ngocol (Post 2233053)
I am using default sidebox form VB and change to (362), and when i install esb ,i change width of ESB setting deferent from my VB sidebox (190) , and it show the ESB width on my FORUM HOME.

can i used defferent width for ESB sidebox so if i set on my forum home it will use width form vb sidebox (362) . but if im in forum display / threat it use esb (190). ?

thanks sory my english bad

Your English is better than mine :D

For your question, no not in the free version.

Regards

ngocol 08-14-2011 08:55 AM

Quote:

Originally Posted by almannai (Post 2233117)
Your English is better than mine :D

For your question, no not in the free version.

Regards

ha..ha..thanks almannai..great mod .:up:

Ichigo88 08-14-2011 01:40 PM

not work for me in custom page please help!

angelcosta 08-14-2011 03:52 PM

My sidebar appears all funny in the thread pages: http://awesomescreenshot.com/06fil5ica


All times are GMT. The time now is 12:21 AM.

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.02665 seconds
  • Memory Usage 2,004KB
  • 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
  • (2)bbcode_html_printable
  • (15)bbcode_php_printable
  • (29)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