Hi
Just before Christmas I looked at my source code and realised that the javascript was being served through your site and I felt that it should be on my server so was going to message you and then found the option to host it locally and thought all was sorted (and didnt check) but seemingly you dont take into account that some people have it in a sub directory. Seemingly my support system hasnt been working since i made the change because its hardcoding to /components rather than just components in the code.
In the plugins/system/livechat.php file you have
| Code: |
elseif($settings->loadMediaFrom == 'local_root') { // Load from local webserver, relative to root $document->addScript('/components/com_livechat/js/livechat_v3.js'); if($isLivechatPopup) { $document->addStyleSheet('/components/com_livechat/css/popup_v3.css'); $document->addStyleSheet('/components/com_livechat/css/custom.css'); } }
|
You need to remove the leading / in front of components
Ive done it in my version and all now works
Tony