Is there a way of separating out the thumbnails and the main image so that each part could be printed wherever you choose in the node.tpl
Is there a way of separating out the thumbnails and the main image so that each part could be printed wherever you choose in the node.tpl
Comments
Comment #1
gonssalIn short: no.
The thumbs are generated alongside the main image in the
theme_cloud_zoom_image_gallery()function, which is a function called from the hook_theme() implemented in the module, which is in turn called by the field formatter, so they are tied together.Your best bet is to use javascript to detach the
div.cloud-zoom-gallery-thumbscontainer and attach it wherever you want in the page. This sould be done on window.load() instead of document.ready().