Studio 42, I found this in the source code of the webpage for Product Details...
<script id="popups_js" type="text/javascript">//<![CDATA[
jQuery(document).ready(function($) {
$('a.ask-a-question, a.printModal, a.recommened-to-friend, a.manuModal').click(function(event){
event.preventDefault();
$.fancybox({
href: $(this).attr('href'),
type: 'iframe',
height: 550
});
});
}); //]]>
</script>
I did find the PHP file that loads the script according to the notes...
"/components/com_virtuemart/sublayouts/askrecomjs.php"
I just don't know what to do or where to add the code in the backend in order for it to reflect in the webpage on the Category page.