I recently created a new drupal theme, and the CKeditor was not showing up. After going to the included CKeditor files I was missing an all important javascript file. This was solved by including the variable

print $head;

In the head section of the theme.

I was wondering if you could update the troubleshooting.txt file to reflect this as well?

Comments

jcisio’s picture

Status: Active » Closed (works as designed)

The API says that:

$head: Markup for the HEAD element (including meta tags, keyword tags, and so on). 

So it is supposed to be in your page.tpl.php. If it is not there, your theme has problem!