Okay, I'm stumped.
Sorry to ask for help so much!
In Display | Product | Show I want to edit this code:
echo $this->image->display($image->file_path,'hikashop_main_image',$image->file_name,'class="hikashop_child_image"','rel="SqueezeBox"');
Currently, that line is producing this huge mass of code that I don't need:
<a class="hikashop_image_small_link" rel="{handler: 'iframe', size: {x: , y: }}" href="/media/com_hikashop/upload/174.jpg" onclick="SqueezeBox.fromElement(this,{parse: 'rel'});return false;" target="_blank" onmouseover="return hikashopChangeImage('hikashop_main_image','/media/com_hikashop/upload/thumbnail/174.jpg','202','220',this);" rel="zoombox" id="hikashop_image_small_link_first" ><img src="/media/com_hikashop/upload/thumbnail/174.jpg" alt="2006_0102Shoshone#84.JPG" class="hikashop_child_image" /></a>
What I want is just something simple:
<a class="hikashop_image_small_link" href="/media/com_hikashop/upload/174.jpg" rel="zoombox"><img src="/media/com_hikashop/upload/thumbnail/174.jpg" alt="2006_0102Shoshone#84.JPG" /></a>
But, I can't figure out where to find the methods or whatever for the image->display function. Sorry if this is a dumb question.
And, thanks!
-Henry