Tagged: 

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #480984

    Hi,
    is it possible to use my own sozial share box instead of the existing?
    I’ve a plugin for sozial media and I got a shortcode for the buttons. I wanna use this one. But in the Blog setting, I just can check to see the standard enfold buttons, which I do not wanna use.

    Thanks, Enrico

    #481031

    Hi enricobaumgart!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .single-post .av-share-box {
        display: none;
    }

    Best regards,
    Yigit

    #481175

    Okay, thanks. But how can I add my own shortcode instead? I dont wanna put it into the post itself, because when I have to change the shortcode, I’d have to change every single post.
    Regards, Enrico

    #481335

    Hi!

    Please go open Enfold/single.php file and find following line

    get_template_part( 'includes/related-posts');
    

    and add your shortcode right above it as following

    do_shortcode( '[your-shortcode]' );

    Best regards,
    Yigit

    #481424

    Hi, thanks for help.
    I just tried to add the following:
    do_shortcode( '[easy-social-share buttons="facebook,twitter,google,linkedin,xing" counters=1 counter_pos="rightm" total_counter_pos="hidden" style="button"]' );

    But it doesn’t work. If I add the shortcode in the post themself, it works. Do you have an idea?

    Thanks, Enrico

    #481432

    Hi!

    Can you please try changing your code to following

    echo do_shortcode( '[easy-social-share buttons="facebook,twitter,google,linkedin,xing" counters=1 counter_pos="rightm" total_counter_pos="hidden" style="button"]' );

    Best regards,
    Yigit

    #481454

    oh, that works :)
    But it there an option to have the same adjustments as the post has?
    Like here: IMAGE

    Do I have to add the shortcode somewhere else? Because when I use the build in social media buttons, the adjustments are the same as the post.

    #481457

    Hi!

    Can you please post the link to your single post page? :)

    Best regards,
    Yigit

    #481460

    Okay: LINK

    #481793

    Is there any idea, how I can get the same adjustments?
    Thanks, Enrico

    #482262

    Hi!

    Please add following code to Quick CSS as well

    @media only screen and (min-width: 990px) {
    .single-post .essb_links {
        position: relative;
        top: -100px;
        margin-left: 125px;
    }}

    Regards,
    Yigit

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