登録ページに新しいカスタム フィールドを追加したいと考えています。ステップ 1 構成 xml (app\code\core\Mage\Customer\etc\config.xml) を次のように変更します。
<customer_account>
<companyname>
<create>1</create>
<update>1</update>
<name>1</name>
</companyname>
</customer_account>
ステップ 2 registration.phtml にフィールドを追加します (app\design\frontend\template\customer\form\registration.phtml)
<div class="field">
<label for="password" class="required"><em>*</em><?php echo $this->__('Business Name') ?></label>
<div class="input-box">
<input type="text" name="companyname" id="companyname" title="<?php echo $this->__('companyname') ?>" class="input-text required-entry" />
</div>
</div>
ステップ 3 このクエリを使用して、新しい属性をデータベースに挿入します。
insert into `eav_attribute` (`entity_type_id`, `attribute_code`, `attribute_model`, `backend_model`, `backend_type`, `backend_table`, `frontend_model`, `frontend_input`, frontend_label`, `frontend_class`, `source_model`, `is_required`, `is_user_defined`, `default_value`, `is_unique`, `note`)values(1, 'companyname', '', '', 'varchar', '', '', 'text', 'Company Name', '', '', 1, 0, '', 0,'');
私の質問は、顧客アカウント編集ページで会社名を表示する方法です。誰かがこれについて私を助けてくれてありがとう。ありがとう