Поставил этот модуль. Он работает, но с summernote. А в меня включен редактор CKEDITOR. Подскажите пожалуйста, что надо изменить чтобы вызывался редактор CKEDITOR.
<file path="admin/view/template/catalog/product_form.tpl">
<operation>
<search><![CDATA[
<?php echo $footer; ?>
]]></search>
<add position="before"><![CDATA[
<script type="text/javascript"><!--
function htmlProductAttribute(textarea) {
if (!textarea.hasClass('htmlProductAttribute')) {
textarea.addClass('htmlProductAttribute');
textarea.tooltip({'title': 'Double Click for HTML'});
textarea.on('dblclick', function() {
textarea.summernote({height: 100});
$('#attribute .note-editor.note-frame.panel').css('margin-bottom', '1px');
});
}
}
$('#attribute textarea[name^="product_attribute["]').each(function(i, e) {
htmlProductAttribute($(this));
});
$('#attribute').on('click', function() {
$(this).find('textarea[name^="product_attribute["]').each(function(i, e) {
htmlProductAttribute($(this));
});
});
//--></script>
]]></add>
</operation>
</file>
<file path="catalog/model/catalog/product.php">
<operation>
<search><![CDATA[
$product_attribute_data[] = array(
]]></search>
<add position="before"><![CDATA[
$product_attribute['text'] = html_entity_decode($product_attribute['text'], ENT_QUOTES, 'UTF-8');
]]></add>
</operation>
</file>
</modification>