Hi Chris,
There is currently no built-in method for automatically opening the livechat popup window, however you can add the following custom javascript to the page where you want the livechat popup to open automatically:
| Code: |
<script language="Javascript"> requestLiveChat('index.php?option=com_livechat&view=popup&popup=1&tmpl=component'); </script>
|
or if you are using mootools and want to open the window when the browser is done loading the page you might use:
| Code: |
<script language="Javascript"> window.addEvent('domready', function() { requestLiveChat('index.php?option=com_livechat&view=popup&popup=1&tmpl=component'); }); </script>
|