Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #337942

    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)?

    #338118

    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

    #338274

    Added this code, another problem – there is no lower border under av-sidebar-social-container, now its under likebox.
    Help, please.

    #338275
    This reply has been marked as private.
    #338495

    Any help?

    #338842

    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

    #338878

    Solved by adding on custom CSS

    .html_header_sidebar .av-sidebar-social-container {
    border-bottom: 1px solid #e1e1e1;
    }

    Thank You!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘fb likebox in photography layout’ is closed to new replies.