2012-03-09 232 views
0

如果我想在Magento註冊頁面中使姓氏不是強制性的,我該怎麼做?Magento登錄頁面

請幫助或指引我正確的方向,這樣我就不會在系統的其他部分工作。

這就是我所做的

I went to the template file Customer/widget/name.phtml 
then in div class field name-lastname i remove the class="required" 

請Magento的

的任何其他部分

感謝

回答

0

你做的是正確的確認它不會亂。它不會影響其他人。

,做驗證的文件是/app/code/core/Mage/Customer/Model/Customer.php

if (!Zend_Validate::is(trim($this->getLastname()) , 'NotEmpty')) { 
     $errors[] = Mage::helper('customer')->__('Last name can\'t be empty'); 
    } 

請覆蓋。

你也可以請到eav_attribute表,你可以找到lastname(id -7)列。請將is_required設置爲0.