• Works perfectly; neat and simple – if you’re a developer (if not you should probably look for something different). I really like not having to rely on a third party server. Would be great to also have Facebook messenger and Whatsapp available. Also I had to rely on CSS (display:none) to get rid of the service name (“Facebook”, “Twitter”,…) in front of the icons I added. Would be nice if there was an option in the setup to hide these service names, since I don’t like the idea of cluttering my CSS with plugin-specific rules. Having said this, I can really recommend the plugin

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author terminalpixel

    (@terminalpixel)

    Took me a while to get around to it but I’ve added some basic default styles now that can optionally be enabled with a filter: add_filter( 'dev_share_buttons_css', '__return_true' );

    Re hiding name of the services using ‘display: none’ – I wouldn’t do that.

    From the accessibility point of view, it is better to use:

    .dev-share-buttons__text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute!important;
    width: 1px;
    }

    to hide them, but keep visible for screen readers 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Perfect’ is closed to new replies.