0

登録ページに新しいカスタム フィールドを追加したいと考えています。ステップ 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,'');

私の質問は、顧客アカウント編集ページで会社名を表示する方法です。誰かがこれについて私を助けてくれてありがとう。ありがとう

4

1 に答える 1

0

カスタマイズの追加フィールドを追加する方法を見つけました。

追加のフィールドを追加する手順は次のとおりです。

  1. config xml (app\code\core\Mage\Customer\etc\config.xml) を次のように変更します。

    <customer_account>
        <businessregistration>
            <create>1</create>
            <update>1</update>
            <name>1</name>
            </companyname>
       </businessregistration>
    
  2. フィールドを registration.phtml (app\design\frontend\template\customer\form\registration.phtml) に追加します。

    <div class="field">
        <label for="businessregistration" class="required"><em>*</em><?php echo $this->__('Buisiness Registration') ?></label>
        <div class="input-box">
            <input type="text" name="businessregistration" id="businessregistration" title="<?php echo $this->__('businessregistration') ?>" class="input-text required-entry" />
        </div>
    </div>
    
  3. これらのクエリをデータベース テーブルに追加します。

    INSERT INTO `eav_attribute` (`attribute_id`, `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 (NULL, '1', 'buisinessregistration', NULL, NULL, 'text', NULL, NULL, 'text', 'Business Registration', NULL, NULL, '0', '0', NULL, '0', NULL);
    

965 は、上記のクエリから最後に挿入された ID です。

Insert into `eav_entity_attribute` 
set entity_type_id = 1,
    attribute_set_id = 1,
    attribute_group_id = 1,
    attribute_id = 965,
    sort_order = 111

insert into `customer_eav_attribute` 
set attribute_id = "965",
    is_visible = 1,
    multiline_count = 1,
    is_system = 0,
    sort_order = 111

insert into `customer_form_attribute` 
set form_code = "adminhtml_customer",
    attribute_id = 965

insert into `customer_form_attribute` 
set form_code = "checkout_register", attribute_id = 965 

insert into `customer_form_attribute` 
set form_code = "customer_account_create", attribute_id = 965

insert into `customer_form_attribute` 
set form_code = "customer_account_edit", attribute_id = 965

これで、新しく追加された「ビジネス登録」がうまく機能します。

乾杯。

于 2013-10-14T10:13:57.150 に答える