Hello,
Or please try to edit the file “app/code/community/Ves/Tempcp/Block/Catalog/Media/Js/Product.php”. Then add the function in the class:
public function isKeepFrame()
{
$keepFrame = false;
if($this->_productListBlocks) {
foreach ($this->_productListBlocks as $blockName) {
$listBlock = $this->getLayout()->getBlock($blockName);
if ($listBlock && $listBlock->getMode() == ‘grid’) {
$keepFrame = true;
break;
}
}
}return $keepFrame;
}