Simple Share
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Share Buttons Adder] FB button doesn’t work, don’t know whyHi @synkro,
Thanks for reaching out, happy to help here!
There’s no reported issues for the Facebook button currently.
For all issues related to Facebook sharing, we recommend looking into your Open Graph tags and making sure they meet their specification requirements.We have a guide that teaches you how to use Facebook’s Open Graph Debugger:
https://www.sharethis.com/support/guides/facebook-debugger-fix-share-links/Direct Link: https://developers.facebook.com/tools/debug/
Running your URL in there, it seems that you have an issue with your URL’s response, it gives a 404 error. https://developers.facebook.com/tools/debug/sharing/?q=http%3A%2F%2Fwww.anais-laffon.com%2Fvioloniste-de-scene-et-de-studio%2F
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Hide on one page – answer hidden on FAQs page@ktrides2 My apologies the shortcode is “[ssba_hide]” with an underscore not a dash.
Fantastic. Thanks for reaching out.
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Background color no longer working@jriangle we pushed the fix in the newest update 7.4.17. Can you verify you issue is resolved now?
@terrymitchell. Can you verify that the newest update has solved your issue?
Please feel free to reach out for any other concerns.
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Non-ASCII characters not displayed correctlyIf you have any other questions please feel free to reach out.
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Disable social buttons from Custom Post TypeSorry we do not currently have a solution for custom post types. We will look into adding this option in the future. For now you could hide the buttons using the <?php do_shortcode( ‘[ssba-hide]’ ); ?> code within your CPT loop. If that doesn’t work for you maybe hide it with styling in the header if the post_type === ‘your-post-type’. Thanks for using our plugin!
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Hide on one page – answer hidden on FAQs pageApologies for the missing code. Use the “[ssba-hide]” shortcode on any page you would like to hide the buttons. Thanks for reaching out.
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Duplicate buttons on image attachment pageWe are marking this resolved for now. Please feel free to reach out if you have any other issues. Thanks.
@mmatej. Can you verify your issue has been resolved with the newest update?
Forum: Plugins
In reply to: [Simple Share Buttons Adder] sharedcount.com Error@goodereader Can you verify whether the newest update has fixed your issue?
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Where is counter for LinkedIn?@hehe1234 Linkedin has deprecated its sharing api so they no longer provide share counts. Sorry for the inconvenience.
@michael-divine If you’re going to add the buttons manually to a custom loop you have to make sure to provide the “url” and “title” attributes to the shortcode:
[ssba-buttons url=”url” title=”title”]
Depending on your loop the php would look roughly like this:
<?php
$url = the_permalink();
$title = the_title();echo do_shortcode( ‘[ssba-buttons url=”‘ . $url . ‘” title=”‘ . $title . ‘”]’ );
?>Let me know if this helps. Thanks!
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Background color no longer working@jriangle I apologize for the inconvenience. We can see this issue is a styling conflict on our end. We’ll make sure to resolve this and push it in the newest update coming soon. For now go ahead and add this bit of css to your themes CSS to solve the issue now:
.ssbp-wrap {
display: inherit!important;
}Thanks so much. Keep you posted.