製品画像は、サイトマップのビューページ&の異なるパスから配信されています。製品の詳細ページとサイトマップの異なるパスから商品画像が配信されています
1)製品ビューのページ:media/catalog/product/W/i/image-name.jpg
:link1
2)http://sitename.com/media/sitemap.xml:media/product/ee7/image-name.jpg
:link2
しかし、私は、製品の画像は、両方のリンクで同じパスからなるべきたい:
media.phtml
<?php
$_product = $this->getProduct();
$_helper = $this->helper('catalog/output');
$dexxtz = Mage::helper('productzoom');
$dexxtz->getCss();
$dexxtz->getJs();
?>
<ul id="etalage">
<li>
<img class="etalage_thumb_image"
src="<?php echo Mage::getModel('catalog/product_media_config')->getMediaUrl($_product->getImage()); ?>" />
<img class="etalage_source_image" title="<?php echo $_product->getImageLabel(); ?>" src="<?php echo $dexxtz->getImageFeatured($this->helper('catalog/image')->init($_product, 'image'), true); ?>" />
</li>
<?php
foreach ($this->getGalleryImages() as $_image) {
if(Mage::registry('current_product')->getImage() != $_image->getFile()) { ?>
<li>
<img class="etalage_thumb_image" src="<?php echo $dexxtz->getImageFeatured($this->helper('catalog/image')->init($this->getProduct(), 'image', $_image->getFile())); ?>" />
<img class="etalage_source_image" title="<?php echo $_image->getLabel(); ?>" src="<?php echo $dexxtz->getImageFeatured($this->helper('catalog/image')->init($this->getProduct(), 'image', $_image->getFile()), true); ?>" />
</li>
<?php
}
}
?>
</ul>
'catalog> Google sitemap'>そこにあなたは以下のURLを見ることができます:' Googleのためのリンク '私はそこにサイトマップのURLを見つけました。 はデフォルトのmagento urlですか?しかし、私はその経路からなぜそれが生成されているのか分かりません。 – fresher