RumbleTalk Integration
Using Jamroom
Add to footer.tpl
{if jrUser_is_logged_in()}
<script>
window.RumbleTalkAsyncCallback = function (RT) {
RT.init({
hash: 'YOUR_CHAT_HASH'
});
RT.login({
username: '{$_user.user_name}',
});
};
</script>
<script src="//d1pfint8izqszg.cloudfront.net/api/v0.29/sdk.js"></script>
{/if}
You can lose the password line as you don't require it in this instance, the chat will only be shown to members when they are logged into your site.
You still need to use the embed code from rumbletalk to embed it on a page in your site. Once you have followed the setup instructions from rumbletalk you should see the following. (see image)
EDIT
Just bear in mind that all this does really is populate the username field, no profile info or picture will get picked up and put into the chat window. Chat users will show as guest users essentially. To get any deeper level of integration you will have to create a custom module, like RT have provided for other platforms.
updated by @garymoncrieff: 10/04/16 10:45:31AM