can I make 'source' view as default for ckeditor?

edited June 2017 in Modules
can I make 'source' view as default for ckeditor?
because i cant see this code in it.
{fuel_block('procedure_block')}

Thanks.

Comments

  • edited 12:08AM
    In MY_fuel.php you can set the following which will affect editors globally:
    $config['text_editor'] = 'markitup';
    On a per field basis, you can set a parameter on the field like so:
    $fields['wysiwyg_example1'] = array('type' => 'wysiwyg', 'editor' => 'markitup');
    More on configuration for a field can be found here:
    http://docs.getfuelcms.com/general/forms#wysiwyg
Sign In or Register to comment.