Hi,
You can modify the file "hikashop_image.php" that you use for the ShadobowBox integration, with this code:
<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
function hikashop_image_link_render(&$obj,$path,$addpopup,$optionslink,$html,$alt=''){
return '<a title="'.$alt.'" rel="shadowbox[HikaShop]" href="'.$obj->uploadFolder_url.$path.'" '.$optionslink.'>'.$html.'</a>';
}
function hikashop_small_image_link_render(&$obj,$path,$addpopup,$optionslink,$html,$alt=''){
return '<a title="'.$alt.'" class="hikashop_image_small_link" rel="shadowbox[HikaShopSmall]" href="'.$obj->uploadFolder_url.$path.'" onmouseover="return hikashopChangeImage(\''.$addpopup.'\',\''.$obj->uploadFolder_url_thumb.'\',\''.$obj->thumbnail_x.'\',\''.$obj->thumbnail_y.'\',this);" '.$optionslink.'>'.$html.'</a>';
}
At this moment, the big images and the thumbnails images would be in the same "gallery". So, when opening the big image, you wouldn't have the navigation arrows for thumbnails images.
But when click on a thumbnail image, you will.
Regards,