But that give me problem, when i should edit store adress in configuration/my store
Here comes a new guide to only use CKEditor when you edit the products.
(1)
Download the latest version of CKEditor:
http://ckeditor.com/download
(2)
Unzip and move the ckeditor folder to /admin/
It should now looks like this /admin/ckeditor/
(3)
Open the file catalog/admin/includes/template_top.php
Find this line:
<script type="text/javascript" src="includes/general.js"></script>Add this line below:
<script type="text/javascript" src="./ckeditor/ckeditor.js"></script>
(4)
Open the file catalog/admin/categories.php
Find this code:
<?php echo tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id']))); ?>
Replace with:
<?php echo tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '10', (isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id'])),'id = products_description[' . $languages[$i]['id'] . '] class="ckeditor"'); ?>
You are now done.
Have a good day and hope it work well for you!






Find content
Not Telling



