2016-09-08 106 views
0

我已經創建了磁貼支持(銷售 - >訂單 - >帳單地址)上的帳單地址的自定義屬性。但是,屬性輸入字段顯示在沒有標籤的後端。像這樣 custom attribute fieldMagento自定義屬性標籤

我這個標籤的後端數組是這樣的。

$attributes = array(
    'buildingnumber' => array(
     'label' => 'Building Number', 
     'backend_type' => 'varchar', 
     'frontend_input' => 'text', 
     'is_user_defined' => 1, 
     'is_system' => 0, 
     'is_visible' => 1,   
     'is_required' => 1, 
     'multiline_count' => 0, 
     'validate_rules' => array(
      'max_text_length' => 255, 
      'min_text_length' => 1 
     ), 
    ), 
); 

請讓我知道如何爲我的領域添加標籤。

+0

打開eav_attribute表和搜索buildingnumber attribute_code和檢查現場frontend_label – faizanbeg

+0

謝謝合作。請寫下你的評論作爲答案。 – Chathuraka

回答

1

打開eav_attribute表和搜索buildingnumber attribute_code和檢查現場frontend_label