在愿望清单magento 1.9中显示日期

时间:2018-11-27 10:57:06

标签: magento-1.9

我想显示日期,其中该项目已添加到magento 1.9的愿望清单中。

我在xml中找到了这个价格块

   <block type="wishlist/customer_wishlist_item_column_cart" name="customer.wishlist.item.price" template="wishlist/item/column/price.phtml">
                    <action method="setTitle" translate="title">
                        <title>Price</title>
                    </action>
                    <block type="wishlist/customer_wishlist_item_options" name="customer.wishlist.item.options" />
                </block>

我想在愿望清单中的价格之后显示日期。

1 个答案:

答案 0 :(得分:1)

只需三个简单步骤:

  1. 将此XML添加到您的local.xml

    <wishlist_index_index translate="label">
     <reference name="customer.wishlist.items">
            <block type="wishlist/customer_wishlist_item_column_cart" name="customer.wishlist.item.date" after="customer.wishlist.item.price" template="wishlist/item/date.phtml">
                    <action method="setTitle" translate="title">
                        <title>Date</title>
                    </action>
                    <block type="wishlist/customer_wishlist_item_options" name="customer.wishlist.item.options" />
            </block>
     </reference>
    

  2. 在模板文件夹date.phtml中添加wishlist/item/date.phtml文件

  3. 将此代码粘贴到date.phtml文件中

    $item = $this->getItem();
     $product = $item->getProduct();
    $options = $this->getChild('customer.wishlist.item.options')
    ->setItem($item)
    ->getConfiguredOptions();
    ?>
    <div class="cart-cell">    
          <?php echo $this->getItem()->getAddedAt();?>
        </div>
    

您已经完成了。