Reputation: 1008
TinyMCE 3.4.7 DOES NOT have code cleanup options... how can I stop it stripping all my tags out?
<?php
$editor =& JFactory::getEditor();
echo $editor->display('description', $this->lotdata->description, '550', '400', '60', '20', false);
?>
I have added some tags to the whitelist in the options but it still cleans everything out when loading the text (I have added tags directly to the database entry and they get stripped off if I load it in the editor).
Upvotes: 1
Views: 906
Reputation: 851
You could check if Joomla's text filtering is getting in the way here. It was the only way I could get Tiny to stop stripping my code. On 1.6/1.7:
On 2.5 the location changed to the Text Filtering option in the Global Configuration section
Upvotes: 1