XF 1.5 Implementing Facebook

Having a bit trouble showing my facebook page on forum list.
Do you mean showing a link to it? AFAIK you can't actually "show" your facebook page on the forum list.

To link, you would create a node that is a link, enter the link to your facebook page and choose its position/parent.

It looks the same as a forum apart from the link icon, and will go to your facebook page.
 
Add the HTML to a custom template in the sidebar, or use one of the ad_sidebar* templates.

Code:
<div class="fb-page" data-href="https://www.facebook.com/ClipTheApex"
  data-width="250" data-hide-cover="false" data-show-facepile="true"
  data-show-posts="false"></div>

upload_2015-8-27_10-19-33.webp

Code:
<div class="fb-page" data-href="https://www.facebook.com/ClipTheApex" 
  data-width="250" data-hide-cover="false" data-show-facepile="true"
  data-show-posts="true"></div>

upload_2015-8-27_10-27-53.webp
 
Add the HTML to a custom template in the sidebar, or use one of the ad_sidebar* templates.

Code:
<div class="fb-page" data-href="https://www.facebook.com/ClipTheApex"
  data-width="250" data-hide-cover="false" data-show-facepile="true"
  data-show-posts="false"></div>

View attachment 115371

Code:
<div class="fb-page" data-href="https://www.facebook.com/ClipTheApex"
  data-width="250" data-hide-cover="false" data-show-facepile="true"
  data-show-posts="true"></div>

View attachment 115372
Hi, I tried the ad_sidebar_top and put those 2 codes

<div class="fb-page" data-href="DreamAion Network"
data-width="250" data-hide-cover="false" data-show-facepile="true"
data-show-posts="false"></div>


<div class="fb-page" data-href="DreamAion Network"
data-width="250" data-hide-cover="false" data-show-facepile="true"
data-show-posts="true"></div>

But it doesn't show anywhere on the forum list
 
Works for me.
Code:
<div class="fb-page" data-href="https://www.facebook.com/pages/DreamAion-Network/1604217896516412"
  data-width="250" data-hide-cover="false" data-show-facepile="true"
  data-show-posts="true"></div>

upload_2015-8-28_17-23-34.webp
 
Top Bottom