2

Magento バックエンドのカテゴリ ページに WYSIWGY フィールドを作成しようとしていますが、うまくいかないようです。私はインストールスクリプトを次のように書いています:

'fabric_and_care' => array(
                    'type'              => 'text',
                    'backend'           => '',
                    'frontend'          => '',
                    'label'             => 'Fabric and Care Instructions',
                    'input'             => 'textarea',
                    'class'             => '',
                    'visible'           => true,
                    'required'          => false,
                    'user_defined'      => true,
                    'default'           => 0,
                    'searchable'        => false,
                    'filterable'        => false,
                    'comparable'        => false,
                    'visible_on_front'  => false,
                    'unique'            => false,
                    'wysiwyg'           => true,
                    'group'             => 'general',                        
                ),

ただし、テキストエリアのみが表示され、WYSIWGY エディターは表示されません。私が間違っているところはありますか?

4

1 に答える 1

3

代わりにこれを試してください。基本的にそれは'wysiwyg' => trueただ'wysiwyg_enabled' => true

    'fabric_and_care' => array(
                'type'              => 'text',
                'backend'           => '',
                'frontend'          => '',
                'label'             => 'Fabric and Care Instructions',
                'input'             => 'textarea',
                'class'             => '',
                'visible'           => true,
                'required'          => false,
                'user_defined'      => true,
                'default'           => 0,
                'searchable'        => false,
                'filterable'        => false,
                'comparable'        => false,
                'visible_on_front'  => false,
                'unique'            => false,
                'wysiwyg_enabled'           => true,
                'group'             => 'general',                        
            ),
于 2012-02-09T13:45:04.337 に答える