MyBB Community Forums

Full Version: Help with code from jappix.com
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
/**
* Paste the following code into your website <head />, at its end.
* Just open the file containing your <head />, such as head.php
* or head.html, or anything else.
* This is the domain that I'm working on http://coa-mis.net/
* It's a fresh install of the latest version of MyBB with a slightly
* modified theme and a few basic plugins. The goal is to have an
* XMPP based chat box with a persistent connection to jappix
* XMPP Servers.
*/

<script type="text/javascript"

src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

<script type="text/javascript">
jQuery.ajaxSetup({cache: true});

jQuery.getScript("https://static.jappix.com/php/get.php?l=en&t=js&g=mini.xml", function() {
MINI_GROUPCHATS = ["[email protected]"];
MINI_ANIMATE = true;
launchMini(true, true, "anonymous.jappix.com");
});
</script>

Help please
you can add the given code at the bottom of footer template

admin panel >> templates >> active theme templates >> footer templates >> footer
You can even add that to the header include if you want, as it is a script which allow you to use Jappix functions or as .m. says footer too is gonna do fine.

I suppose they would have given u one more code to insert it wherever you want the chatbox?
You guys are great. Thank you so much