1

私は、4 つのランダムな製品を表示するカスタムのアップセル関連製品スクリプトに取り組んできました。

問題は次のとおりです。

通常の製品 URL は次のとおりです。

/shop/$商品名

これにより、次のような URL が生成されることがあります: /$productname/

または次のような URL: /catalog/product/view/id/$productID/4/s/$productname/category/$categoryid/

すべての URL を同じにしたいので: /shop/$productname

<div class="upsell">
<h2>You might be interested in</h2>
    <?php // List mode ?>
    <?php $_iterator = 0; ?>
    <?php // Grid Mode ?>
    <table class="products-grid upsell" id="upsell-product-table">
                    <tbody>
                    <tr>
    <?php $_collectionSize = $_productCollection->count() ?>
    <?php $_columnCount = $this->getColumnCount(); $_columnCount=4; ?>
    <?php $i=0; foreach ($_productCollection as $_product): ?>
        <?php if ($i++%$_columnCount==0): ?>
        <?php endif ?>
            <td>
            <?php // Initiate product model
$product = Mage::getModel('catalog/product');

// Load specific product whose tier price want to update
$product ->load($_product->getId()); ?>
                <a href="<?php echo $product->getProductUrl() ?>" title="<?php echo $this->stripTags($this->getImageLabel($product, 'small_image'), null, true) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($product, 'small_image')->resize(170); ?>" width="125" height="125" alt="<?php echo $this->stripTags($this->getImageLabel($_product, 'small_image'), null, true) ?>" /></a>
                 <h3 class="product-name"><a href="<?php echo $product->getProductUrl() ?>" title="<?php echo $this->stripTags($product->getName(), null, true) ?>"><?php echo $_helper->productAttribute($product, $product->getName(), 'name') ?></a></h3>
                <?php echo $this->getPriceHtml($product, true) ?>

            </td>
        <?php endforeach; ?>
        </tr>
        </tbody>
        </table>
</div>
4

2 に答える 2