Forum for discussing general topics related to Couch.
20 posts Page 2 of 2
Hi KK

Is strange isn't it why it works sometimes and not all the time

I'll email the host now and see what they say

Thank you so much for taking a look, will post a update when I hear back from the host
Is it possible to have the gallery have album categories?
Have you set dynamic_folders='1' ?

Code: Select all
<cms:template title='Gallery' clonable='1' dynamic_folders='1' gallery='1' >


I then usually use a thumbnail image to trigger a lightbox display of the contents of each folder or category - something like this:
Code: Select all
             <ul class="gallery-grid clearfix">   
             <cms:pages masterpage="gallery.php" folder=folder_name include_subfolders='0' orderby='photo_order' order='asc' >
                     <li class="col-sm-3 col-xs-6 clearfix">
                     <a href="<cms:show gg_image />" title="<cms:show k_page_title />"><img src="<cms:show grid_thumb />" alt="<cms:show k_page_title />"/></a>
               </li>
            </cms:pages>
              </ul>
I got it working but when clicking on the thumbnail image within the category, the whole site is being made dark as well as the enlarged image

see link below

[url]
http://giftsandtreats.co.uk/gallery.php?f=1
[/url]
Ian, that is a frontend issue and has nothing to do with Couch.
You'll have to debug the slimbox code you are using for displaying the gallery.
Adding to my last post - since you seem to be using the sample gallery implementation that accompanies the docs, I think you can solve the problem by using the version of jQuery used in that implementation -
Code: Select all
<script type="text/javascript" src="<cms:show k_admin_link />includes/jquery.min-1.5.1.js"></script>

Hope it helps.
I have put the following line in and the gallery is working now but the NivoSlider on the home page is not working as that uses the latest version of jquery, seems to be a conflict

Code: Select all
<script type="text/javascript" src="<cms:show k_admin_link />includes/jquery.min-1.5.1.js"></script>
In that case I suggest you use a newer version of slimbox that works with the later version of JQuery.
Got it sorted now and works perfect

Thank you for all the replies etc. really appreciate it
You are welcome :)
20 posts Page 2 of 2