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:
Code: [Select]
$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:
Code: [Select]
$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.
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
Thank you!
How do you stop the image being a link to the full size version please?