gpt4 book ai didi

php - Magento 1.9 : Get Up-sell products in the table, 根据产品名称选择

转载 作者:行者123 更新时间:2023-11-30 21:50:58 25 4
gpt4 key购买 nike

我是否可以过滤,我为特定产品设置的追加销售产品/将如何根据产品名称显示在我的表格中?我的想法是只显示以某个词开头的产品,例如“Decor”,其余产品不显示在表格中。这是我的代码 upsell.phtml:

<?php if(count($this->getItemCollection()->getItems())): ?>
<div class="box-collateral box-up-sell">
<h2><?php echo $this->__('') ?></h2>
<table style=" border:4px solid white;border-right:4px solid green class="mini-products-grid" id="upsell-product-table">
<?php // $this->setColumnCount(5); // uncomment this line if you want to have another number of columns. also can be changed in layout ?>
<?php $this->resetItemsIterator() ?>
<?php for($_i=0;$_i<$this->getRowCount();$_i++): ?>
<tr style="white";>
<?php for($_j=0;$_j<$this->getColumnCount();$_j++): ?>
<?php if($_link=$this->getIterableItem()): ?>
<td style=" border-top:4px solid white;border-right:4px solid green>
<a href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_link->getName()) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_link, 'small_image')->resize(250) ?>" width="170" height="170" alt="<?php echo $this->escapeHtml($_link->getName()) ?>" /></a>
<h3 class="product-name"><a href="<?php echo $_link->getProductUrl() ?>" title="<?php echo $this->escapeHtml($_link->getName()) ?>"><?php echo $this->escapeHtml($_link->getName()) ?></a></h3>
<?php echo $this->getPriceHtml($_link, true, '-upsell') ?>
<?php echo $this->getReviewsSummaryHtml($_link) ?>
</td>
<?php else: ?>
<td class="empty">&nbsp;</td>
<?php endif; ?>
<?php endfor; ?>
</tr>
<?php endfor; ?>
</table>
<script type="text/javascript">decorateTable('upsell-product-table')</script>
</div>
<?php endif ?>

我想到了使用正则表达式。

最佳答案

您可以过滤您的产品链接集合

->addAttributeToFilter('name', array('like' => '%Decor%'))

但是你应该在加载集合之前在 View block 中执行此操作

关于php - Magento 1.9 : Get Up-sell products in the table, 根据产品名称选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47304128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com