基本图像、小图像、缩略图图像在Magento中显示不正确



I我的缩略图没有正确显示在多图像视图中。在管理端,我可以看到单个产品的所有不同图像集。我选择了默认的主图像、基础图像和缩略图,但在前端我只看到默认的图像。其他图像不显示,而是重复默认图像。

好吧,尽管我发现了问题。一个扩展导致了冲突。我只是简单地取消了分机的安装,一切都开始正常工作了。罪魁祸首扩展名在magento连接中被调用为"Image Permalink"或"IG_NamedImages"。

如果有人遇到同样的问题,请告诉我

我修复了此模块编辑IG_NamedImages_Model_Product_Image如下:

class IG_NamedImages_Model_Product_Image extends Mage_Catalog_Model_Product_Image
{
    public function setBaseFile($file)
    {
        parent::setBaseFile($file);
        if (Mage::helper('ig_namedimages')->getIsEnabled()){
            $product = $this->getProduct();
            $imageName = Mage::getSingleton('catalog/product_url')->formatUrlKey($product->getName());
            $this->_newFile = preg_replace('//([^/]+.w+)$/', '/'.$imageName.'-1', $this->_newFile);
        }
        return $this;
    }
}

相关内容

  • 没有找到相关文章

最新更新