views:

32

answers:

2
node/*
user/*
comment/*

This is what i am using to enable tinyMCE drupal on particular pages.

Now what i am looking for is to apply on all the NODES except the one having id (eg 100). How can i do that.

A: 

Take a look at this:

http://drupal.org/node/121331

It goes into depth on how to enable TinyMCE. I believe there is a Drupal admin setting for doing what you want.

Todd Moses
+1  A: 

Use the WYISWYG API module and input formats.

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

Yorirou

related questions