sellars
Newbie   Posts: 4 Registered: 4/5/2004 Status: Offline
|
posted on 4/5/2004 at 02:33 AM |
Hi all - I have an Autotheme that I purchased from a designer that I want
to use under PostNuke 726 with Content Express (aka CE). To enable the use of the
HTMLarea WYSIWYG editor in CE the install instructions says
"(6) If you want to enable htmlarea WYSIWYG editor for your theme, you
will need to modify the themeheader() in theme.php by inserting the
following line after the "<head>" tag:
include_once( "modules/ContentExpress/docs/htmlarea.inc" );
and then add "onLoad=\"initEditor()\"" as attribute for your body tag so
it looks like this:
echo "<body onLoad=\"initEditor();\"">;
NOTE: If you are using privoxy or any popup ads killer, you may
experience problem with the loading of the WYSIWYG editor."
Trouble is in my theme.php the ThemeFooter() function looks like this...
//This is the theme footer - the layout that is rendered after the
modules
function themefooter()
{
global $all_vars;
extract($all_vars);
atThemeRender($output['footer']);
}
Can anyone help me here please I need to finish a website for
a volunteer emergency rescue unit and need this CE module working. ____________________
|
| |
| |
Shawn
Administrator   Posts: 4608 Registered: 10/7/2002 Status: Online
|
posted on 4/5/2004 at 05:02 PM |
Try adding that code in the theme.html after the head tag. Also, make sure
to surround it with <?php and ?> and also set strip to head = false
in the AutoTheme admin.
-Shawn |
| |
sellars
Newbie   Posts: 4 Registered: 4/5/2004 Status: Offline
|
posted on 4/5/2004 at 05:22 PM |
Thanks Shawn - Ill give it a go! |
| |