Telefone フィールドの要件を削除するのを手伝ってくれるのは誰ですか?
私は解決策を試しました:
http://www.magentocommerce.com/boards/viewthread/10948/P0/
http://www.magentocommerce.com/boards/viewthread/199287/
しかし、運がなければ...
PS私はMagento版を使用しています。1.7.0.2
Telefone フィールドの要件を削除するのを手伝ってくれるのは誰ですか?
私は解決策を試しました:
http://www.magentocommerce.com/boards/viewthread/10948/P0/
http://www.magentocommerce.com/boards/viewthread/199287/
しかし、運がなければ...
PS私はMagento版を使用しています。1.7.0.2
試す
DB テーブル名: eav_attribute
探すattribute_code
= 電話
セットis_required
= 0
拡張するカスタム モジュールを作成することで、これを達成することもできます。Mage_Customer_Model_Form
<customer>
<rewrite>
<form>MageIgniter_RemoveRequiredField_Model_Customer_Form</form>
</rewrite>
</customer>
class MageIgniter_RemoveRequiredField_Model_Customer_Form extends Mage_Customer_Model_Form {
protected function _getFormAttributeCollection() {
$collection = parent::_getFormAttributeCollection()
->addFieldToFilter('attribute_code', array('neq' => 'created_at'));
// look for the 'telephone' field here and change 'is_required'