PDA

View Full Version : No wysiwyg in intro


auroramae
07-03-2006, 10:38 PM
Hi,

I'm pulling my hair out.

I have a wysiwyg editor on the full text secton but not on the intro text.
At first I thought it was an editor issue, but it does not matter what editor I use.
On the joomlart site example it shows both text areas with editors.
This is the code for the ja_submit.html.php, how can I get the editor in both forms.
or how can I make so there is only one and it is the "required" one.
Or should I be looking somewhere else in joomla to fix this.

Any help wld be geatly appreciated.

<tr>
<td colspan="2"><label for="introtext"><?php echo _H_INTROTEXT.' ('._H_REQUIRED.')'; ?></label>:</td>
</tr>
<tr>
<td colspan="2">
<?php
editorArea( 'editor1','', 'introtext', '500px', '200px', '70', '15' ) ;
if (!(hasInit()&&$my->id)){
initEditor();
}?>
</td></tr>
<tr>
<td colspan="2"><label for="fulltext"><?php echo _H_MAINTEXT.' ('._H_OPTIONAL.')'; ?></label>:</td>
</tr>
<tr>
<td colspan="2">
<?php
editorArea( 'editor2', '' , 'fulltext', '500px', '400px', '70', '15' ) ;
?>
</td></tr>