• Hello,

    How to add or remove “Social sharing buttons for each article”?
    For example, I don’t want Facebook share button and I want Linkedin share button.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi stealthbyroot. You could do it using CSS.

    1. Define all the social links you want to display.
    2. In your list of posts, hover over each post title to display the URL popup at the bottom of the screen.
    3. Note the post id at the end of the url:

    post.php?post=40&action=edit

    4. Add custom CSS to hide the icons you don’t want to display for that post:

    .postid-40 .social-links .fa.fa-facebook {
        display: none;
    }

    Or, you could hide all the icons by default, then display them on individual posts:

    .social-links .fa {
        display: none;
    }
    
    .postid-30 .social-links .fa.fa-facebook {
        display: block;
    }
    Thread Starter stealthbyroot

    (@stealthbyroot)

    OK. Thanks. Only CSS way. I was thinking maybe in theme options but…. Maybe developers to have a look in the future theme development.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to edit? – Social sharing buttons for each article’ is closed to new replies.