2012-09-17 7 views

答えて

1

私は、Magentoの管理者でオプションがあります確信している:

管理 - >システム - >設定 - >コンテンツ管理

+0

これは私の仕事を - ありがとう。 – MJCoder

+0

この設定は製品には適用されず、CMSコンテンツに対してのみ適用されます。 –

0

私はアンドリューによって答えが正しいはずと信じては。 Magentoフォームは、WYSIWYGが有効になっているかどうかを確認する必要があります。

Mage::getSingleton('cms/wysiwyg_config')->isEnabled() 

これはちょうどあなたが以前に投稿答えを変更している設定をチェックしている:

管理 - >システム - >設定 - >コンテンツ管理

これは、デフォルトでは、その後の素敵なインターフェイスが表示されますそれを可能にするポップアップやアクションを強制しないでください。

0

この質問への答えは、もともとNikitasでここに投稿されました: https://stackoverflow.com/a/20307722/3254362

私は簡単にするため、ここで答えをコピーしています...


私はそれを見つけた少し研究した後。

1)このコードを.phtmlファイルに入れて、エディタを直接表示します。

2)コードの6行目には、elements: "short_description"が表示されます。希望の要素IDで"short_description"を変更することができます。コンマで区切られた複数の要素IDをスペースで区切って追加できます。

例:私は、製品の説明を編集するときエディタが直接表示させたいので、私は

になど、app/design/adminhtml/default/default/template/catalog/product/edit.phtmlにコード簡単な説明を、このコードを配置:

<script type="text/javascript"> 
window.onload=function() 
{ 
    tinyMCE.init({ 
    mode : "exact", 
    elements: "short_description", 
    theme : "advanced", 
    plugins : "inlinepopups,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras", 
    theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect", 
    theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor", 
    theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen", 
    theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,|,visualchars,nonbreaking", 
    theme_advanced_toolbar_location : "top", 
    theme_advanced_toolbar_align : "left", 
    theme_advanced_path_location : "bottom", 
    extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]", 
    theme_advanced_resize_horizontal : 'true', 
    theme_advanced_resizing : 'true', 
    apply_source_formatting : 'true', 
    convert_urls : 'false', 
    force_br_newlines : 'true', 
    doctype : '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">' 

    }); 
}; 
</script> 
関連する問題