Recent Activity -> Facebook Recommendations

anfimovir

Member
Hello,

XenForo 1.0.4

If it's set not to display blocks facebook, then on the page: Recent Activity

Block still appears ..
 
I have just tested this on a clean installation and the block is removed from the sidebar if the feature isn't activated.

I can't reproduce the problem.

Do you have a custom style, any outdated templates, any add-ons installed?
 
I can't confirm this too.

Standard Template contains a condition for this:
Code:
    <xen:if is="{$xenOptions.facebookLike}">
        <div class="section fbRecommendations">
            <div class="secondaryContent">
                <h3>{xen:phrase facebook_recommendations}</h3>
                <div style="margin: 0 -@secondaryContent.padding-left -@secondaryContent.padding-bottom">
                    <xen:container var="$facebookSdk">1</xen:container>
                    <fb:recommendations site="{$requestPaths.host}" width="@sidebar.width" height="300" header="false" font="trebuchet ms" border_color="@secondaryContent.background-color" colorscheme="@fbColorScheme"></fb:recommendations>
                </div>
            </div>
        </div>
    </xen:if>
 
Top Bottom