我有一个可配置和简单产品(多种颜色)的商店。目前,我们选择一个简单的产品图像并将其分配给可配置产品,这就是列表页面上显示的内容。问题是,如果特定颜色缺货,我们会遇到代表产品不可用的图像(并且必须手动更新该图像)。
有没有办法在列表页面上使用简单的产品图像,同时仍然能够控制使用哪个图像?我知道如何使用列表页面上的简单图像,但我无法弄清楚如何指定WHICH简单图像(目前我只是抓住简单的产品并从列表中的第一个中提取图像)。 / p>
如果我能找到一种方法对可配置产品中的简单产品进行分类(即,确保对于产品A,简单产品分为黑色,绿色,蓝色和产品B,简单产品分类为绿色,蓝色,黑色),我想我可以弄清楚剩下的。
任何想法?
答案 0 :(得分:1)
想通了。我为名为'sort_order'的简单产品添加了一个新属性。然后,我覆盖了Catalog / Product助手并添加了以下方法:
public function getSortedSimpleProducts($product) {
$products = array();
$allProducts = $product->getTypeInstance(true)->getUsedProducts(null, $product);
foreach ($allProducts as $product) {
if ($product->isSaleable()) {
$products[] = $product;
}
}
$sorted_products = array();
$unsorted_products = array();
foreach ($products as $simple_product) {
$sort_order = $simple_product->getData('sort_order');
if ($sort_order) {
$sorted_products[$sort_order] = $simple_product;
}
else {
$unsorted_products[] = $simple_product;
}
}
$final_products = $sorted_products;
if (count($unsorted_products) > 0) {
$final_products = array_merge($sorted_products, $unsorted_products);
}
if (count($final_products) > 0) {
sort($final_products);
}
return $final_products;
}
然后,在list.phtml模板中,围绕这一行:
<?php $i=0; foreach ($_productCollection as $_product): ?>
我添加了以下代码:
$image_product = $_product;
$products = $this->helper('catalog/product')->getSortedSimpleProducts($_product);
if (count($products) > 0) {
$image_product = $products[0];
}
并更新了我的图片代码:
<img src="<?php echo $this->helper('catalog/image')->init($image_product, 'small_image')->resize(189,238); ?>" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" />
然后我覆盖了Mage_Catalog_Block_Product_View_Type_Configurable,以使getAllowProducts按新的排序顺序排序(这决定了视图页面上颜色的排序):
public function getAllowProducts() {
if (!$this->hasAllowProducts()) {
$products = array();
$allProducts = Mage::helper('catalog/product')->getSortedSimpleProducts($this->getProduct());
foreach ($allProducts as $product) {
if ($product->isSaleable()) {
$products[] = $product;
}
}
$this->setAllowProducts($products);
}
return $this->getData('allow_products');
}
然后更新了media.phtml文件:
$childProducts = $this->helper('catalog/product')->getSortedSimpleProducts($_product);
这样产品图片也会使用相同的排序。
我希望这对性能没有太大的影响(客户端表示这是一个主要要求)。如果客户端没有在简单产品上设置排序顺序,它会很好地降级。并且,如果库存缺货,它将在排序顺序中显示下一个图像。
欢迎任何批评!