Magento 1.8 Backend – Configuring TinyMCE

backendentitiestinymce

TinyMCE has an very unfriendly feature for me: it escapes all accents to html entities once you switch from raw to visual and then to raw again.

I found the key that must be configured, now I would like to know the place to put the configuration for the backend editor to STOP escaping accents.

Anyone ? Thanks.

Best Answer

in this file magento_installation_directory/js/mage/adminhtml/wysiwyg/tiny_mce/setup.js, on line 97(Magento 1.7.0.2 CE) you will find a variable named settings. You need to add this option: entity_encoding : "raw". You can read more about it here tinymce.com/wiki.php/Configuration:entity_encoding. Please note that if you upgrade Magento, you may need to apply this again.

Related Topic