Viewing 1 reply thread
You must be logged in to reply to this topic.
Hi,
I turned on the social share on posts under blog config. However, this is not working correctly. See my post here: https://www.squarefootcreative.com/rainbow/2013-success-stories/#. The social share icon is way at the bottom. When I click on it, I get the following: https://www.evernote.com/shard/s554/sh/a8dcef05-e858-4247-b638-8c06175cff2c/98a4ac938815349404cc25dbe4b5a517. I don’t think that’s right. What is the problem?
Thanks,
Carolina
Hello,
Please edit the file: specular/includes/view/blog/loop-index.php, find the line:
<div class="share_link"><a href="#"><i class="steadysets-icon-share"></i></a></div>
and replace with:
<div class="share_link"><a href="javascript:void(0)"><i class="steadysets-icon-share"></i></a></div>
Also, in the same file: specular\includes\view\blog\loop-index.php
Replace the line:
$tumblr_shares = '<a href="https://www.tumblr.com/share/link?url='.esc_url(get_permalink()).'&name='.get_the_title().'&description='.get_the_content().'" target="_blank">';
with this one:
$tumblr_shares = '<a href="https://www.tumblr.com/share/link?url='.esc_url(get_permalink()).'&name='.get_the_title().'&description='.str_replace('"',"'",get_the_content()).'" target="_blank">';
It’s repeated twice on the file.
Best regards!
You must be logged in to reply to this topic.