- Beiträge: 106
- Dank erhalten: 10
Use Ckeditor3 on marvikshop
- Support Team
- Autor
- Offline
- Moderator
Weniger
Mehr
13 Jahre 10 Monate her - 13 Jahre 10 Monate her #122
von Support Team
Use Ckeditor3 on marvikshop wurde erstellt von Support Team
_______
Step 1
Go to ckeditor.com and download the latest Editor Release (CK Editor, which has superseded FCK Editor)...
_______
Step 2.
Unzip it all, then upload the fckeditor folder and all it's contents to your admin directory.
_______
Step 3.
Oopen admin/categories.php and other files with editor use
__________
FIND THIS:
<script language="javascript" src="<?php echo DIR_WS_COMPONENT ?>includes/general.js"></script>
_____________
ADD AFTER IT:
<script type="text/javascript" src="<?php echo DIR_WS_COMPONENT ?>ckeditor/ckeditor.js"></script>
__________
THEN FIND THIS:
tep_draw_textarea_field('products_description . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]]) ? stripslashes($products_description[$languages[$i]]) : tep_get_products_description($pInfo->products_id, $languages[$i])));
___________
CHANGE FOR
tep_draw_textarea_field('products_description . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]]) ? stripslashes($products_description[$languages[$i]]) : tep_get_products_description($pInfo->products_id, $languages[$i])),' class="ckeditor"');
_______
enjoy :laugh:
Step 1
Go to ckeditor.com and download the latest Editor Release (CK Editor, which has superseded FCK Editor)...
_______
Step 2.
Unzip it all, then upload the fckeditor folder and all it's contents to your admin directory.
_______
Step 3.
Oopen admin/categories.php and other files with editor use
__________
FIND THIS:
<script language="javascript" src="<?php echo DIR_WS_COMPONENT ?>includes/general.js"></script>
_____________
ADD AFTER IT:
<script type="text/javascript" src="<?php echo DIR_WS_COMPONENT ?>ckeditor/ckeditor.js"></script>
__________
THEN FIND THIS:
tep_draw_textarea_field('products_description . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]]) ? stripslashes($products_description[$languages[$i]]) : tep_get_products_description($pInfo->products_id, $languages[$i])));
___________
CHANGE FOR
tep_draw_textarea_field('products_description . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]]) ? stripslashes($products_description[$languages[$i]]) : tep_get_products_description($pInfo->products_id, $languages[$i])),' class="ckeditor"');
_______
enjoy :laugh:
Letzte Änderung: 13 Jahre 10 Monate her von Support Team.
Bitte Anmelden oder Registrieren um der Konversation beizutreten.