Hello
I’d like to mix these two lines. Someone can help me ?
<?php echo item_image_gallery(array('link'=>array('data-lightbox'=>'lightbox', 'class' => 'admin-thumb panel','linkToFile' => 'fullsize')));?>
<?php echo files_for_item(array('linkToFile' => 'fullsize')) ?>
I’d wish mix the display of fullSize Images and the lightbox
Many thanks !
Olivier
I try
<?php echo files_for_item(
array(
'linkAttributes' => array('rel' => 'lightbox')
),
array(
'linkToFile' => 'fullsize'
)
);
Lightbox=OK
Fullsize=KO
?>
I’ve found 
<?php echo files_for_item(array(
'linkToFile' => 'fullsize',
'linkAttributes' => array('rel' => 'lightbox')
));
;?>
system
Closed
4
This topic was automatically closed 360 days after the last reply. New replies are no longer allowed.