Facebook have launched a new plugin to embed a FB page on your website.
https://developers.facebook.com/docs/plugins/page-plugin
FB instructions say to add the JS SDK code at the top of the page after the <body> tag
Question is where to add this in Enfold?
Hi Calcite!
Please add following code to Functions.php file in Appearance > Editor
function add_custom_tag(){
?>
YOUR CODE GOES HERE
<?php
}
add_action('wp_footer', 'add_custom_tag');
Regards,
Yigit
Hi Yigit,
That did the trick – thank you :)