如何在magento中获取当前登录客户的性别?

时间:2014-02-05 14:58:36

标签: magento

我尝试使用Mage :: getSingleton('customer / session'),但它没有任何性别功能。

1 个答案:

答案 0 :(得分:0)

我假设您已为客户创建了该属性,因为据我所知,magento默认情况下不提供此属性。 所以,试试这个:

$customer->getResource()
          ->getAttribute('gender')
          ->getFrontend()
          ->getValue($customer);

它应该起作用,或至少它对我有用。