Guest Posted March 12, 2011 Share Posted March 12, 2011 (edited) Hi I am new to os com I have version 2.3.1 and it seems very basic compared to my other site which runs open cart, But i need os com for the site i am trying to build, First of all i would like to add text to my products but be able to enlarge text add colour, bullets and so forth, but my version or package hasnt got it. where to i get this from, Any ideas would be great, All so i need a add on for multipul images for one product If someone can point me in the right direction that would be great Thanks Edited March 12, 2011 by needabolt Quote Link to comment Share on other sites More sharing options...
Guest Posted March 12, 2011 Share Posted March 12, 2011 Phil, Install CKeditor Chris Quote Link to comment Share on other sites More sharing options...
Guest Posted March 12, 2011 Share Posted March 12, 2011 Thanks chris i will give it a go :thumbsup: Phil, Install CKeditor Chris Quote Link to comment Share on other sites More sharing options...
Guest Posted March 12, 2011 Share Posted March 12, 2011 is CKeditor the easyest one to install? Quote Link to comment Share on other sites More sharing options...
Guest Posted March 12, 2011 Share Posted March 12, 2011 Yes, it is Phil. And it will do everything you want it to do as well. Chris Quote Link to comment Share on other sites More sharing options...
Guest Posted March 13, 2011 Share Posted March 13, 2011 Can you still help me on this one, I Have installed it now but it does not show up in the add products text area, i think it may to do with the second part when adding to the template top page, I added the code above the <head> but it didnt work i also checked it in my store config and it is set to true. Am i putting this in the right place The text underlined is the CKeditor code. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html <?php echo HTML_PARAMS; ?>> <?php if (!defined('USE_CKEDITOR_ADMIN_TEXTAREA')) { tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, set_function) values ('', 'Use CKEditor', 'USE_CKEDITOR_ADMIN_TEXTAREA','true','Use CKEditor for WYSIWYG editing of textarea fields in admin',1,99,now(),'tep_cfg_select_option(array(\'true\', \'false\'),' )"); define ('USE_CKEDITOR_ADMIN_TEXTAREA','true'); } if (USE_CKEDITOR_ADMIN_TEXTAREA == "true") { ?> <script type="text/javascript" src="<?php echo tep_href_link('ext/ckeditor/ckeditor.js'); ?>"></script> <script type="text/javascript" src="<?php echo tep_href_link('ext/ckeditor/adapters/jquery.js'); ?>"></script> <script type="text/javascript"> $(function() { var $editors = $('textarea'); if ($editors.length) { $editors.each(function() { var editorID = $(this).attr("id"); var instance = CKEDITOR.instances[editorID]; if (instance) { CKEDITOR.remove(instance); } CKEDITOR.replace(editorID); }); } }); </script> <?php } ?> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <meta name="robots" content="noindex,nofollow"> <title><?php echo TITLE; ?></title> <base href="<?php echo HTTP_SERVER . DIR_WS_ADMIN; ?>" /> <!--[if IE]><script type="text/javascript" src= Quote Link to comment Share on other sites More sharing options...
Guest Posted March 13, 2011 Share Posted March 13, 2011 Whoops sorry, i was looking at the wrong head lol, It is a little further down, i must say that was easy to install, First time user as well. many thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.