Facebook Feed
Solve the Facebook feed spinning circle issue!
Get the embed code: https://developers.facebook.com/docs/plugins/page-plugin/
Sometimes the code doesn't like having the facebook profiles name and you will have to use the user id number
Oh yeah cool
Basically, you just have to replace the "tabs=timeline" in the code below, with "show_posts=true"
This is what the code that Facebook gives you will look like:
<iframe title="Facebook feed" src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2F100064829377372%2F&tabs=timeline&width=340&height=500&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId" width="340" height="500" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe>
This is what the code will look like after you replace the "tabs=timeline":
<iframe title="Facebook feed" src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2F100064829377372%2F&show_posts=true&width=340&height=500&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId" width="340" height="500" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share"></iframe>
