Hi. Just wondering if you had any insight on linking to the blog post URL on the Home Page, including counter if possible? I might purchase a plugin instead, but wanted to check and see if there is any fix to this? Thanks.
Hi @graphicbear! Did you manage your goal eventually? Thanks
@peaxi
No, I purchased the Easy Social Share Buttons plugin instead, which works nicely and had good support for me.
In version 4.8 replace existing line 717 of simple-share-adder.php
$urlCurrentPage = (isset($atts[‘url’]) ? $atts[‘url’] : ssba_current_url());
with
if (get_permalink($post->ID) != “”) {
$urlCurrentPage = get_permalink($post->ID);
} else {
$urlCurrentPage = (isset($atts[‘url’]) ? $atts[‘url’] : ssba_current_url());
}