5
           
            
                
     
    
    You can swap the DHTML editor interface for a plain textarea field by replacing instances of 'XoopsFormDhtmlTextArea' with 'XoopsFormTextArea' E.g. in the Xdirectory module you would replace:
 $modlinkform->addElement(new XoopsFormDhtmlTextArea(_MD_DESCRIPTIONC , 'moddesc' , null , 8, 50), false);  
with:
 $modlinkform->addElement(new XoopsFormTextArea(_MD_DESCRIPTIONC , 'moddesc' , null , 8, 50), false);  
However, users can still enter Xoopscodes to format text.
To disable Xoopscodes completely I guess you would need to hack the patterns and replacements in /class/module.textsanitizer.php?
    
        A thread is for life. Not just for Christmas.