As it is now, you cannot change font colors in the profile description TinyMCE editor. Where can i change the editor to advanced, so members can change their font color?
As it is now, you cannot change font colors in the profile description TinyMCE editor. Where can i change the editor to advanced, so members can change their font color? |
Open the inc/classes/BxDolProfileFields.php find this code line: case 'html_area': $aInput['type'] = 'textarea'; $aInput['html'] = true; $aInput['value'] = $aValues[$iPerson]; $aInput['attrs']['counter'] = 'true'; break; and replace with: case 'html_area': $aInput['type'] = 'textarea'; $aInput['html'] = 2; $aInput['value'] = $aValues[$iPerson]; $aInput['attrs']['counter'] = 'true'; break; PS: If possible do not write me personally, please try to ask on the forum first |
I'm seeing 2 instances of this code. Do I replace just one or both? |
It doesn't really matter what you change - the editor doesn't function right. You will just piss off your members (take it from me - I have experience with this one unfortunately) You will get the advanced editor to work, but only once in a while. There is a problem with the editor loading that Boonex has been ignoring it for some time now. See this thread ==> http://www.boonex.com/unity/forums/?action=goto&my_threads=1#topic/TinyMCE-in-comments-issue.htm |