1

这是我获取所有新产品的 Magento 代码,但它突然停止工作。我添加了一些新类别,然后当我看到前端 New Arrivals 部分为空时。任何帮助,将不胜感激。

这是我的代码:

<?php if (($_products = $this->getProductCollection()) && $_products->getSize()): ?>
<div class="new-products">

<div class="title_index">

<!-- <div class="pagination_carousel" id="foo3_pag"></div>-->
 <h2><?php echo $this->__('New Arrivals') ?></h2>
</div>

<div class="index_cont">

<div class="list_carousel">         

<ul id="user_interaction">

<?php $_columnCount = $this->getColumnCount(); ?>

<?php $i=0; foreach ($_products->getItems() as $_product): ?>        

<li><h3 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>"><?php echo $this->htmlEscape($_product->getName()) ?></a></h3>
                                        <a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>" class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(220, 200) ?>" width="150" height="130" alt="<?php echo $this->htmlEscape($_product->getName()) ?>" /></a>

<div class="descr"><?php echo($_product->getSku()); ?></div>

<div class="new_price"><?php echo $this->getPriceHtml($_product, true, '-new') ?></div>

<div class="new_pr_btn"><input value="1" type="text" name="qty" class="my-qty-box" /><button type="button" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart" onclick="setLocation('<?php echo $this->getAddToCartUrl($_product) ?>')"><span><span><?php 
echo $this->__('Add to Cart') ?></span></span></button></div>

                        </li>        

    <?php endforeach; ?>

                </ul>

                <div class="clear"></div>           

                </div>

</div>

<div class="shadow-div"></div>

</div>

<?php endif; ?>

谢谢丹妮

4

1 回答 1

0

$sql=$this->getProductCollection()->getSelect(); 将此代码放在您的 phtml 顶部。回声 $sql; 这将向您展示 sql qquery。

现在直接在 phpMyAdmin 或 miniadmin 中触发此查询,并检查您是否有此查询的记录。

如果不诊断此 sql 查询,请考虑导致某些情况的过滤器,这将引导您进行修复。

否则,您在此处粘贴 sql 查询以获取更多评论。

注意:如果平面目录在代码上,将检查平面目录表。所以检查这些表是否有所有产品。如果没有运行索引。

于 2013-03-15T03:33:47.677 回答