Our site www.viart.com site is operated by latest Viart Shop 5 with default Clear design
Topic Information
KevinG
KevinG
Issue: Incorrect link to show_image.php
 
Description:
The template has an incorrect link to show_image.php causing unnecessary 'hits' in tracking pages. The html is linking to show_image.php in the root of ViArt Shop when it should be linking to the show_image.php file located in /admin
 
 
Fix:
Locate the following line in /templates/admin/admin_select.html:
imageItems.innerHTML = '<img id="image_' + imageName + '" src=\'..\/show_image.php?filepath=' + imageHref + '&width=200\' border=\'0\' imgid=\'' + imageName + '\'>';
 
Replace with:
imageItems.innerHTML = '<img id="image_' + imageName + '" src=\'show_image.php?filepath=' + imageHref + '&width=200\' border=\'0\' imgid=\'' + imageName + '\'>';
 
 
 
Is there a place where bug reports can be entered?