Hello!
Is it possible to add “facebook likebox” widget from plugin “facebook” (https://wordpress.org/plugins/facebook/) in the area after “av-sidebar-social-container” (see screenshot)?
Hey artspbseo!
Thank you for using Enfold.
You can add this on functions.php:
add_action('ava_after_main_menu', 'ava_facebook_add', 10);
function ava_facebook_add() {
if($settings['sidebarmenu_social'] != "disabled")
{
echo do_shortcode('FACEBOOK SHORTCODE HERE');
}
}
Use the plugin’s shortcode.
Cheers!
Ismael
Added this code, another problem – there is no lower border under av-sidebar-social-container, now its under likebox.
Help, please.
Any help?
Hey!
I’m not sure if you can change the style of a facebook likebox widget but please try this on Quick CSS:
.fb_iframe_widget iframe {
position: absolute;
width: 250px !important;
}
Best regards,
Ismael
Solved by adding on custom CSS
.html_header_sidebar .av-sidebar-social-container {
border-bottom: 1px solid #e1e1e1;
}
Thank You!