Thank you again Simon for the point in the right direction....
It is now fixed - I added the below section commented below to the ckeditor_footer_bottom.php file.
case FILENAME_ARTICLES:
if(tep_not_null($topics_description_elements) && ARTICLE_WYSIWYG_ENABLE == 'Enable'){
$cpe = explode(',',$topics_description_elements);
foreach ($cpe as $id => $editor_id){
if($editor_id != ''){
echo tep_insert_ckeditor($editor_id,'BODY');
}
}
}
// added this section begin
if(tep_not_null($articles_description_elements) && ARTICLE_WYSIWYG_ENABLE == 'Enable'){
$cpe = explode(',',$articles_description_elements);
foreach ($cpe as $id => $editor_id){
if($editor_id != ''){
echo tep_insert_ckeditor($editor_id,'BODY');
}
}
}
// added this section end
break;
With this fix for the articles and the last fix for the pages editing has it working so no more tiny_mce editor....
Mike