Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1333877

    Hello Kriesi team,

    on our blog posts the social media share icons are gone. I’ve deactivated all plugins and switched the theme from our child theme to parent theme but still not working.
    You can find a login in the private content section, maybe it’s a misconfiguration from my side.

    Best regards,
    Sven

    #1333922

    Hi Sven,

    They are not showing up since you are using the Layout Builder to create your post. When that is the case, all content has to be added manually. You can add the Social Buttons element to show the share buttons.

    Best regards,
    Rikard

    #1333952

    Hi Rikard,
    is there a hook to do add this element or my own markup by code? There are lots of blog post and adding manually is to much.

    Best regards,
    Sven

    #1333980

    Hi Sven,

    Please do the following:
    – Enable debugging mode for ALB by referring to this post – https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode.
    – Create a new page and Social Buttons element and adjust it as needed.
    – Copy the shortcode of Social Buttons element from debug field which is right below Advanced Layout Builder
    – Add following code to bottom of Functions.php file of your child theme and paste the shortcode of your Social Buttons element where it says [YOUR SHORTCODE GOES HERE] in the code

    add_action('ava_before_footer', 'new_ava_before_footer');
    function new_ava_before_footer(){
    	if( is_single() ){
    		echo do_shortcode("[YOUR SHORTCODE GOES HERE]");
    	}
    }

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.