Houston we have a bug!
When I combined the two layout files of main image above tabs and main image inside tabs, I completely lumped the main image loading into the tag check. So currently if you have "show_main_image_in_tabs = true" in the tpl file, but you have a product with no tags at all. It will not show the image.
I'm also going to change the way the main image call works to make it a hardcode tag. If you use the tag, then the image is in the tabs. If you don't use the tag, then the image is out of the tabs.
For now, the fix is below:
FIND (around line 81):
Code:
If ($show_main_image_in_tabs == false) {
REPLACE WITH:
Code:
$chkTabStart = strpos($proddata, "<!--%");
$chkTabEnd = strpos($proddata, "%-->");
If ($show_main_image_in_tabs == false || $chkTabStart === false || $chkTabEnd === false) {
That should fix the problem until the next release
Bookmarks