A quick note to let you know how I hacked Yootheme Zoo 2.3. I wanted to have a wysiwyg editor while my users were submitting article in frontend with ZOO. Usually you can activate the “trusted mode” to have this wysiwyg editor. But you will also have several other fields which are too much for normal users. In order to have a wysiwyg editor, even in the non-trusted mode, here is the modification you should implement.
Here is the trick. Activate the trusted mode, but then, made a code modification to hide the “administration” panel in frontend. Here is the code you have to change on line 40 in /joomla_base_dir/components/com_zoo/partials/_submission.php** __**
[cc lang=”php”]echo $this->partial(‘administration’);[/cc]
should be commented :
[cc lang=”php”]// echo $this->partial(‘administration’);[/cc]
[Edit] The old hack was the following
Here is the line you have to change on line 265 in /joomla_base_dir/administrator/components/com_zoo/elements/textarea/textarea.php
[cc lang=”php”]if ($trusted_mode) {[/cc]
should be transformed to
[cc lang=”php”]if ($trusted_mod || !$trusted_mode) {[/cc]Or some other modification on the “if” instruction.That’s it, you are done with the hack.