One way to remove the text “View Full-Size Image” from beneath your product thumbnail on your flypage, make a copy of, then edit this file:
components/com_virtuemart/themes/your_theme/theme.php
Find the function vmBuildFullImageLink and within that find this line:
$text = ps_product::image_tag($product['product_thumb_image'], $img_attributes, 0)."<br/>".$VM_LANG->_('PHPSHOP_FLYPAGE_ENLARGE_IMAGE');
Change it so it looks like this:
$text = ps_product::image_tag($product['product_thumb_image'], $img_attributes, 0);
Save and test.
Another method would be to clear out the ‘PHPSHOP_FLYPAGE_ENLARGE_IMAGE’ text in your langauge file.
{ 3 comments… read them below or add one }
Thank you for providing quick and concise instructions for a resolution to this issue.
Cheers
J. Ricci
Do you have instructions for increasing media file upload size and increase time out for uploads for VM 1.9.9? Thanks
J. Ricci
Great. Worked fine… was looking for this hack