Styling Facebook Comments

As of mojoPortal CMS version 2.3.9.0, we've added support for Using Facebook Comment System on pages and in the Blog as an alternative to our support for Disqus and IntenseDebate.

Requires adding this in layout.master file of the skin, just above the <form element:
<portal:FacebookSdk ID="fbsdk" runat="server" />

and a Facebook AppId must be entered either in Site Settings or in user.config

<add key="FacebookAppId" value="xxxxxxxxxxxxxx" />

There are a few properties that can be configured from the theme.skin file, an example is shown below with the default settings:

<portal:FacebookCommentWidget runat="server"
PostsToShow="10"
WidgetWidth="470"
ColorScheme="light"
/>

Facebook comments in the blog are controlled separately by a SkinID like this:

<portal:FacebookCommentWidget runat="server" SkinID="Blog"
PostsToShow="10"
WidgetWidth="470"
ColorScheme="light"
/>

ColorScheme can be either light or dark.

Created by Joe Audette on Aug 06, 2012