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)

ps2wiz 05-03-2010 07:28 PM

No problem, thanks for contributing to the community with this great modification :)

thinkfast 05-06-2010 04:18 AM

the first post is become shrink

do you know how to fix it?

almannai 05-06-2010 05:35 AM

Quote:

Originally Posted by thinkfast (Post 2032430)

the first post is become shrink

do you know how to fix it?

hmmm

odd thing!!

Does it happening on firefox or ie?

Anybody else having same issue?

thinkfast 05-06-2010 05:42 AM

hmm nevermind, this is postbit issue and i find the answer here
Code:

http://www.vbulletin.com/forum/showthread.php?351039-First-Post-in-Thread-not-spanning-entire-width-of-post&p=1976358

almannai 05-06-2010 06:45 AM

Quote:

Originally Posted by thinkfast (Post 2032449)
hmm nevermind, this is postbit issue and i find the answer here http://www.vbulletin.com/forum/showt...post&p=1976358

hurrrrrray

another bug this mod have been accused with and turned out a bug in vbulletin:D

Thank you Thinkfast for sharing this

Da-Vinci 05-10-2010 03:57 PM

Hi great mod, but I'm having a few problems with getting it to display on my custom pages.

I've done the template edits but I'm a little unsure where exactly to put this in the .php file.
PHP Code:

$templater->register('sidebarext'$sidebarext);
$templater->register('sidebaropen'$sidebaropen); 

I've tried it in a few different places, but I either get a white page or just the normal page with no sidebar?

Here is my .php code, could somebody just point out were I need to add the additional code.

PHP Code:

<?php

// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################

define('THIS_SCRIPT''portal');
define('CSRF_PROTECTION'true);  
// change this depending on your filename

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();

// get special data templates from the datastore
$specialtemplates = array();

// pre-cache templates used by all actions
$globaltemplates = array('PORTAL',
);

// pre-cache templates used by specific actions
$actiontemplates = array();

// ######################### REQUIRE BACK-END ############################
// if your page is outside of your normal vb forums directory, you should change directories by uncommenting the next line
// chdir ('/path/to/your/forums');
require_once('./global.php');

// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################


$navbits construct_navbits(array('' => 'Portal'));
$navbar render_navbar_template($navbits);

// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle 'Portal';

// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######
  
$templater vB_Template::create('PORTAL');
$templater->register_page_templates();
$templater->register('navbar'$navb

Cheers

almannai 05-11-2010 10:30 AM

Quote:

Originally Posted by Da-Vinci (Post 2034596)
Hi great mod, but I'm having a few problems with getting it to display on my custom pages.

I've done the template edits but I'm a little unsure where exactly to put this in the .php file.
PHP Code:

$templater->register('sidebarext'$sidebarext);
$templater->register('sidebaropen'$sidebaropen); 

I've tried it in a few different places, but I either get a white page or just the normal page with no sidebar?

Here is my .php code, could somebody just point out were I need to add the additional code.

PHP Code:

<?php

// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################

define('THIS_SCRIPT''portal');
define('CSRF_PROTECTION'true);  
// change this depending on your filename

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();

// get special data templates from the datastore
$specialtemplates = array();

// pre-cache templates used by all actions
$globaltemplates = array('PORTAL',
);

// pre-cache templates used by specific actions
$actiontemplates = array();

// ######################### REQUIRE BACK-END ############################
// if your page is outside of your normal vb forums directory, you should change directories by uncommenting the next line
// chdir ('/path/to/your/forums');
require_once('./global.php');

// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################


$navbits construct_navbits(array('' => 'Portal'));
$navbar render_navbar_template($navbits);

// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle 'Portal';

// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######
  
$templater vB_Template::create('PORTAL');
$templater->register_page_templates();
$templater->register('navbar'$navb

Cheers

your php code is not full code it seams you didn't copy the full code

but anyway as part of your code above your php page show look like the following


PHP Code:

<?php

// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################

define('THIS_SCRIPT''portal');
define('CSRF_PROTECTION'true);  
// change this depending on your filename

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();

// get special data templates from the datastore
$specialtemplates = array();

// pre-cache templates used by all actions
$globaltemplates = array('PORTAL',
);

// pre-cache templates used by specific actions
$actiontemplates = array();

// ######################### REQUIRE BACK-END ############################
// if your page is outside of your normal vb forums directory, you should change directories by uncommenting the next line
// chdir ('/path/to/your/forums');
require_once('./global.php');

// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################


$navbits construct_navbits(array('' => 'Portal'));
$navbar render_navbar_template($navbits);

// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle 'Portal';

// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######
  
$templater vB_Template::create('PORTAL');
$templater->register_page_templates();
$templater->register('navbar'$navb );

//added for the everywhere sidebar
$templater->register('sidebarext'$sidebarext);
$templater->register('sidebaropen'$sidebaropen);


Da-Vinci 05-11-2010 01:30 PM

It's still not working, I must not have copied the complete code in my other post, but this is what my .php file now looks.

PHP Code:

<?php

// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################

define('THIS_SCRIPT''portal');
define('CSRF_PROTECTION'true);  
// change this depending on your filename

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();

// get special data templates from the datastore
$specialtemplates = array();

// pre-cache templates used by all actions
$globaltemplates = array('PORTAL',
);

// pre-cache templates used by specific actions
$actiontemplates = array();

// ######################### REQUIRE BACK-END ############################
// if your page is outside of your normal vb forums directory, you should change directories by uncommenting the next line
// chdir ('/path/to/your/forums');
require_once('./global.php');

// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################


$navbits construct_navbits(array('' => 'Portal'));
$navbar render_navbar_template($navbits);

// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle 'Portal';

// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######
  
$templater vB_Template::create('PORTAL');
$templater->register_page_templates();
$templater->register('navbar'$navbar);
$templater->register('pagetitle'$pagetitle);
print_output($templater->render());

//added for the everywhere sidebar
$templater->register('sidebarext'$sidebarext);
$templater->register('sidebaropen'$sidebaropen);
?>

I used the code you pasted, but I just got a white page. I'm using 4.0.3 if it makes any difference.

almannai 05-11-2010 03:55 PM

Quote:

Originally Posted by Da-Vinci (Post 2035148)
It's still not working, I must not have copied the complete code in my other post, but this is what my .php file now looks.

PHP Code:

<?php

// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################

define('THIS_SCRIPT''portal');
define('CSRF_PROTECTION'true);  
// change this depending on your filename

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();

// get special data templates from the datastore
$specialtemplates = array();

// pre-cache templates used by all actions
$globaltemplates = array('PORTAL',
);

// pre-cache templates used by specific actions
$actiontemplates = array();

// ######################### REQUIRE BACK-END ############################
// if your page is outside of your normal vb forums directory, you should change directories by uncommenting the next line
// chdir ('/path/to/your/forums');
require_once('./global.php');

// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################


$navbits construct_navbits(array('' => 'Portal'));
$navbar render_navbar_template($navbits);

// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle 'Portal';

// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######
  
$templater vB_Template::create('PORTAL');
$templater->register_page_templates();
$templater->register('navbar'$navbar);
$templater->register('pagetitle'$pagetitle);
print_output($templater->render());

//added for the everywhere sidebar
$templater->register('sidebarext'$sidebarext);
$templater->register('sidebaropen'$sidebaropen);
?>

I used the code you pasted, but I just got a white page. I'm using 4.0.3 if it makes any difference.

This should do it

see the render should be at the end after registering the variables

Please let me know how it goes

PHP Code:

<?php

// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// #################### DEFINE IMPORTANT CONSTANTS #######################

define('THIS_SCRIPT''portal');
define('CSRF_PROTECTION'true);  
// change this depending on your filename

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();

// get special data templates from the datastore
$specialtemplates = array();

// pre-cache templates used by all actions
$globaltemplates = array('PORTAL',
);

// pre-cache templates used by specific actions
$actiontemplates = array();

// ######################### REQUIRE BACK-END ############################
// if your page is outside of your normal vb forums directory, you should change directories by uncommenting the next line
// chdir ('/path/to/your/forums');
require_once('./global.php');

// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################


$navbits construct_navbits(array('' => 'Portal'));
$navbar render_navbar_template($navbits);

// ###### YOUR CUSTOM CODE GOES HERE #####
$pagetitle 'Portal';

// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######
  
$templater vB_Template::create('PORTAL');
$templater->register_page_templates();
$templater->register('navbar'$navbar);
$templater->register('pagetitle'$pagetitle);

//added for the everywhere sidebar
$templater->register('sidebarext'$sidebarext);
$templater->register('sidebaropen'$sidebaropen);
print_output($templater->render());
?>


Da-Vinci 05-11-2010 10:24 PM

Excellent that worked, thank you very much indeed.


All times are GMT. The time now is 12:45 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.02462 seconds
  • Memory Usage 1,850KB
  • 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
  • (1)bbcode_code_printable
  • (8)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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