Quote:
Originally Posted by DeeNice
Hey,
I.ve bought version 2.1 but i have one small question.
I use the Tangerine style and i want to display 4 pictures in one colum.
In the left header colum of this style under the advertising bar see attachment. when i use the $vbgallery it does not display what am i doing wrong?
I've added two attachments for a better understanding cause my english is not so good.
|
You should have no need of this hack in 2.1 vBGallery.
- I have ran across this problem before.
The person had
Left side column on forum home only installed and the gallery images would not show up on their side block.
What I did to make it work:
1) your side bar is attached to phase_template this hook runs before forumhome_complete.
What I had to do to get it working is move plugin "PhotoPost vBGallery Forumhome" from hook location forumhome_complete to global_start.
2) I edited "PhotoPost vBGallery Forumhome"
Replaced:
Code:
require(DIR . '/includes/vbgallery/forumhome_complete.php');
With:
Code:
if (THIS_SCRIPT == 'index'){
require(DIR . '/includes/vbgallery/forumhome_complete.php');
}
3) place $vbgallery in the side block template.