TaigaChat - AJAX Shoutbox [Deleted]

Is there any way to get this to work with the [bd] widget framework? In the FAQ for the widget framework there's mention of a TaigaChat.xml, but this file is nowhere to be found.
 
So it turns out it is the free version that does not work. As soon as I upgraded to the pay version, all is good.
I was able to figure out that it doesn't work because the $taigachat variable in the template is empty.

not sure why or what needs to be done to fix that.

not interested in paying for the Pro version.
 
Is there any way to get this to work with the [bd] widget framework? In the FAQ for the widget framework there's mention of a TaigaChat.xml, but this file is nowhere to be found.
This is there for the pro version:
https://xenforo.com/community/resources/taigachat-pro-realtime-chat-shoutbox.1224/

not interested in paying for the Pro version.
Then don't xD But don't complain about missing features that are pro version only. You can attempt to code it yourself for free :P
 
this worked perfectly fine for me...

make sure on the options you have this enabled to edit the templates and add the free version shoutbox onto the sidebars or the forum..
https://gyazo.com/3f33c6b872ca923cae5150a0762bc001

How to edit the templates?

Upload contents of upload folder to forum root
Install addon-TaigaChat.xml file

Add the template include code to forum_list either above or below the sidebar_online_users include (whatever you feel looks best):
Code:
<xen:include template="dark_taigachat" />

Or, if you want the shoutbox above or below your forum list, add the following code to forum_list:
Code:
<xen:include template="dark_taigachat"><xen:set var="$taigachat_alt">1</xen:set></xen:include>

Either before or just after the code below:
Code:
<xen:if is="{$renderedNodes}"><xen:include template="node_list" /></xen:if>
 
For anyone having problems with the BBCode icons not showing up, I have a fix.

Step 1.)
You need to include Font Awesome unless your style already comes with it.

In templates, open PAGE_CONTAINER

Find this:
Code:
<!--XenForo_Require:CSS-->
Add the following code right above it:
Code:
<link href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">

Save and Exit.

Step 2.)
In templates, open EXTRA.css and add this at the bottom:
Code:
.shoutbox {
    padding: 6px;
    line-height: 0!important;
}

Save and exit.

Step 3.)
In the options for TaigaChat, look for the 'BBCode buttons' box and replace everything with this:
Code:
<span class='shoutbox fa fa-bold'></span>:[b][/b]
<span class='shoutbox fa fa-italic'></span>:[i][/i]
<span class='shoutbox fa fa-strikethrough'></span>:[s][/s]
<span class='shoutbox fa fa-adjust'></span>:[color=][/color]
<span class='shoutbox fa fa-picture-o'></span>:[img][/img]
<span class='shoutbox fa fa-chain'></span>:[url=][/url]

Save changes.

The BBCode bar will now be using the FontAwesome icons. Hope this helps :)


------

Was looking for this the whole day mate.. thank you very much!
 
Top Bottom