
08-06-2006, 06:14 PM
|
 |
|
|
Join Date: Jul 2006
Location: Switzerland
Posts: 30
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by StevanMD
Can you please tell me what changes you made to integrate the Gallery on the main page of VBAdvanced?
Thanks
|
It's very easy, I followed the instructions from Christianb that he posted some time ago, I quote them here for you.
Now, I would like to eliminate the title upon the pics (Album foto) but I still haven't discoverd how...
Quote:
Originally Posted by christianb
No problem
What I did was went to the VBA CMPS => Add module => Module Type [Template]
Module Title - Gallery (Or whatever you want)
Column [Center Column]
Display Order 20 (whatever you want here)
Active Yes
Template to Include: adv_portal_gallery
Template Content:
PHP Code:
<if condition="$vboptions['show_latest']==1">
<tr>
<td colspan=$gal_num_rows align="center">Latest pictures in the gallery:
</tr>
<tr>$latestgallery
</if>
<if condition="$vboptions['show_random']==1">
<tr>
<td colspan=$gal_num_rows align="center">Random pictures from the gallery:
</tr>
<tr>
$random_gallery
</tr>
</if>
Use Module Shell Template - Yes
Module Link: (I used this and put it directly to my gallery (same as the link for the navbar - remember your forum ID)
Permissions are up to you - I disallow unregistered and banned users to save bandwidth
|
|