XF 1.1 Facebook chat in members view sidebar

polle

Active member
When I go to the members button in the main nav I see the search members, top publishers and newest.
Now I see under that a facebook chat, but not displaying correctly.

Where can I fix that and how can I diseable that chat ?

facechat.webp

Thanks.
 
I'm not a facebooker so I can't test that feature. :(

The relevant code is in this template:

Admin CP -> Appearance -> Templates -> member_list

Code:
	<xen:if is="{$xenOptions.facebookAppId} AND {$xenOptions.facebookFacepile}">
		<xen:container var="$facebookSdk">1</xen:container>
		<fb:facepile width="@sidebar.width" size="small" colorscheme="@fbColorScheme"></fb:facepile>
	</xen:if>

The color scheme is a style property:

Admin CP -> Appearance -> Style Properties -> General -> Facebook Plugin Color Scheme

For reference:
http://developers.facebook.com/docs/reference/plugins/facepile/
 
Top Bottom