|
If JCE stops working when browsing for files, links, images etc ... you may be hosting on a php 5.3 server and you need to read here and update 1 file. http://www.joomlacontenteditor.net/forum/topic?f=17&t=16527 |
|
I used this code in a module to add a personalised greeting to a module for logged in members. I had to use Sourcerer to add the code into my editor. $User =& JFactory::getUser(); if ($User->id) { echo 'Hello '.$User->name.','; } else { echo 'Hello, visitor'; } ?> |