Disabling ACE editor

Permalink
How can I disable the ACE editor in the HTML Block?

I prefer using my editor of choice and It's All Text extension.

Thank you all

arael78
 
mesuva replied on at Permalink Best Answer Reply
mesuva
- Create the folder /application/blocks/html
- Inside this new folder, create the file form_setup_html.php
- Add to this file the following code, then clear the cache:
<?php defined('C5_EXECUTE') or die("Access Denied."); ?>  
<textarea  id="ccm-block-html-value-textarea" name="content"><?php echo htmlspecialchars($content,ENT_QUOTES,APP_CHARSET)?></textarea>
<style type="text/css">
    #ccm-block-html-value-textarea {
        width: 100%;
        border: 1px solid #eee;
        height: 450px;
    }
</style>

After this, the HTML block should just return a plain textarea for editing.
arael78 replied on at Permalink Reply
arael78
It the same thing I did. But I was hoping it was possible to enable/disable it in the settings somehow.