In PS1.6.0.9 i added code below with my id in product.tpl
{if $content_only} <div id="goto-product-page">{l s='More details'}</div> {/if}
and added this id to js function in product.js
$(document).on('click', '#image-block, #goto-product-page', function(e){ e.preventDefault(); var productUrl = window.document.location.href + ''; var data = productUrl.replace('content_only=1', ''); window.parent.document.location.href = data; return; });
plus style in product.css
#goto-product-page { font-size: 12px; cursor: pointer; }
and all works fine