WYSIWYG API isn't showing any WYSIWYG editor at all

Hi,

I installed the latest version of the WYSIWYG API on my Drupal 6 system and enabled it.
Then I downloaded both the TinyMCE editor and the FCK editor and put them in the right place
(~/sites/all/libraries/...) and the admin panel marked those two editors as installed.

Then I added both editors to a few input types and configured them to show three buttons (bold, italic and underline).

They are set to default, so each page I edit should show an editor, but I don't get to see anything!
In the source output code I do have the lines for the JavaScripts needed.

Furthermore, if switch to the default theme I actually get the button 'Disable/Enable bar'. On click I see some change in the textarea, but not the editor!
For some reason, the link is not visible in our custom theme, but that's not the main problem offcourse.

The main problem is: why isn't any of our editors showing up :s

Groups:
Login to post comments

Issue fixed

Threesa - Wed, 2009-06-17 10:13

The issue has been fixed!
Our template provider did a very good job, but at the end of our custom template he forgot to put one PHP hook that adds an extra JavaScript at the end of the page.

We constantly checked if the script tags at the beginning were correct (which they were), but never thought there'd be one at the end, let alone that it would be one this crucial.

But it is! ;)

Greets, Threesa
...xXx...


PHP Hook?

newcarinfo - Wed, 2009-07-22 10:55

Hi Threesa, I have the exact same issue, if you don't mind me asking, what PHP hook was missing?

Thanks

Christian


Missing PHP hook

Threesa - Wed, 2009-07-22 11:05

At the end of page.tpl.php make sure the following is present:

<?php
print $closure;
?>

just before the closing body and html tag.

I was missing the $closure hook.

Greets, Threesa
...xXx...


Ugh such a simple thing to miss

creed's picture
creed - Sun, 2009-08-09 03:21

Was doing a custom mod of ad_agency and couldn't get this working. Such a simple thing to overlook resolved my issue here (http://drupal.org/node/537634)

Thanks again!


Thanks Threesa!

newcarinfo - Wed, 2009-07-22 12:05

Thanks Threesa!


You're very welcome ;) It's

Threesa - Mon, 2009-08-10 07:46

You're very welcome ;)
It's so easy to overlook this!

Greets, Threesa
...xXx...