在form.phtml Magento中添加storeview名称

时间:2012-01-26 19:33:49

标签: forms magento contact

我使用默认的form.phtml来处理客户问题。我有两个商店,无法看到客户用来发送他的问题的商店。是否添加了一些自定义代码以明确客户使用的商店?

1 个答案:

答案 0 :(得分:1)

在前端,您可以获取当前商店对象或当前商店ID

$curStoreId = Mage::app()->getStore()->getId();
$curStoreName = Mage::app()->getStore()->getName(); // or getFrontendName()

$curWebsite = Mage::app()->getStore()->getWebsite();

希望你能使用这些代码。