Hello
I developed this for my website and thought I'd share it.
This fix places a link to what ever Pm system you are using in the profile box, like in the image below.
To use this all you have to do is find
components/com_fireboard/template/default/plugin/profilebox/profilebox.php
and replace it with the file attached.
The code which makes this work is below
| Code: |
///Code for PM inbox link in profile box : By Dave E.////////////////////
switch ($fbConfig['pm_component']) ///
{ ///
case jim : $pm_url = "index.php?option=com_jim"; break; ///
case pms : $pm_url = "index.php?option=com_mypms"; break; ///
case uddeim : $pm_url = "index.php?option=com_uddeim"; break; ///
case missus : $pm_url = "index.php?option=com_missus"; break; ///
case clexuspm : $pm_url = "index.php?option=com_clexus"; break; ///
case no : $pm_url = ""; ///
} ///
/////////////////////////////////////////////////////////////////////////
|