If you want to link to the details page instead of a modal window popup of a larger image for each product listen in your category browse page, simply replace
echo $product->images[0]->displayMediaThumb('class="browseProductImage" border="0" title="'.$product->product_name.'" ',true,'class="modal"');
with:
echo JHTML::link($product->link, $product->images[0]->displayMediaThumb('',false), 'title="'.$product->product_name.'"');
in your category browse template file.
Try that, but ended with no image at all.
Please do
echo on the code above if you did not.
echo JHTML::link($product->link, $product->images[0]->displayMediaThumb('',false), 'title="'.$product->product_name.'"');
Thank you! Was just trying to work that out.