0

我想在产品页面上创建一个预填充相关产品的下拉菜单。我遇到了下面的代码,它在下拉菜单中显示所有产品。我将它粘贴到文件 view.phtml 中并证明可以正常工作。如何修改它以显示相关产品?

<select>
<?php
    $products = Mage::getResourceModel('catalog/product_collection')
        ->setStore(Mage::app()->getStore()->getId())
        ->addAttributeToFilter('status', array('eq' => '1'))
        ->addAttributeToFilter('type_id', array('eq' => 'simple'));
    foreach ($products as $prod_model) {
        $product = Mage::getModel('catalog/product')->load($prod_model->getId());
        echo "<option value=\"".$product->getId()."\">".$product->getName()."</option>";
    }
?>

我还发现我可以通过 SKU 来做到这一点,并遇到了这个检索匹配产品 ID 的代码:

$match = substr($product->getSku(), 0, 4);
$resource = Mage::getModel('core/resource');
$read = $resource->getConnection('core_read');

$select = $read->select()
->from(array('e'=>$resource->getTableName('catalog/product')), 'entity_id')
->where("e.sku LIKE '" . $match . "%'");
$ids = $read->fetchAll($select);

我只想知道如何通过使用相关产品或 SKU 将两个代码链接在一起。有人可以帮我吗?非常感谢

4

1 回答 1

0

用这个 :

$products = $_product->getRelatedProductCollection()->setStore(Mage::app()->getStore()->getId())
    ->addAttributeToFilter('status', array('eq' => '1'))
    ->addAttributeToFilter('type_id', array('eq' => 'simple'));

拥有您收藏的相关产品。

于 2013-02-04T14:56:56.990 回答