I use cms 1.7.1. with the Gallery Modul /Fancybox.
On the start page "X images" is shown. Is there a way to eliminate this?
Thanks
[SOLVED] Gallery Modul: Image Count
[SOLVED] Gallery Modul: Image Count
Last edited by JoFe on Tue Jun 22, 2010 8:35 pm, edited 1 time in total.
Re: Gallery Modul: Image Count
that's what I have guessed ...
Which entry in which file should I look for?

Re: Gallery Modul: Image Count
Look in the gallery templates tab in the backend and choose to edit the fancybox template.
In the template code field you'll find
delete that row 
In the template code field you'll find
Code: Select all
<p>{$imagecount}</p>

Re: Gallery Modul: Image Count
BINGO! Thanks a lot ..... 

- shwartzweb
- New Member
- Posts: 4
- Joined: Thu Mar 25, 2010 8:27 pm
Re: [SOLVED] Gallery Modul: Image Count
I had similar issue and wanted to remove $imagecount. I have galleries and then there are many galleries and silly "0 images". Instead of removing I spent few minutes reading manual and made in template this code:
As result I have nice number of Galleries and once you click on it you get nice number of images. Not sure how this will works if you add images and galleries in one mix. But why would you do this?
Code: Select all
{if ($numimages) == '0'}
<p>{$itemcount} galleries</p>
{elsif}
<p>{$imagecount}</p>{/if}