Enable tinyMce in all but one node

node/* user/* comment/* 

This is what I use to enable drupal tinyMCE on specific pages.

Now what I'm looking for should apply to all NODES except the identifier (e.g. 100). How can i do this.

+4
source share
2 answers

Use the WYISWYG API module and input formats.

Create an input format called Node100, which is a clone of the usual input format that you use for nodes. Do not enable TinyMCE in this input format. Set the input format for node.

+1
source

Take a look at this:

http://drupal.org/node/121331

It details how to enable TinyMCE. I believe that there is a Drupal admin setting to accomplish what you want.

0
source

All Articles