Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我认识magento好几天了。有人可以帮我找到添加到愿望清单的日期的解决方案。我想在我试过的 template/wishlist/item/column/info.phtml 中获取这些信息
$item = $this->getItem(); $product = $item->getProduct(); Var_dump($product->_data)
但没有成功。对象 $product 具有添加到愿望清单的日期,但受到保护。
将产品添加到愿望清单的日期存储在愿望清单项目中。尝试使用$item->getAddedAt()而不是加载产品(参见 Mage_Wishlist_Model_Item)。
$item->getAddedAt()