1

我认识magento好几天了。有人可以帮我找到添加到愿望清单的日期的解决方案。我想在我试过的 template/wishlist/item/column/info.phtml 中获取这些信息

$item = $this->getItem();

$product = $item->getProduct();

Var_dump($product->_data)

但没有成功。对象 $product 具有添加到愿望清单的日期,但受到保护。

4

1 回答 1

4

将产品添加到愿望清单的日期存储在愿望清单项目中。尝试使用$item->getAddedAt()而不是加载产品(参见 Mage_Wishlist_Model_Item)。

于 2013-09-27T10:39:41.040 回答