Viewing 2 reply threads
You must be logged in to reply to this topic.
Hello there,
I’d like to be able to add to the share via social media icons on the foot of a blog post (as seen here: https://www.advent-im.co.uk/blog-timeline )
The most important is a LinkedIn icon, is this possible at all?
Thanks very much.
Hello,
Sorry for the late reply.
Do you want to add the Linkedin share too? Please go to file includes/view/blog/loop-creative.php and find these lines:
<div class="shares_container">
<ul class="shares">
<li class="facebook"><?php echo $facebook_shares; ?><i class="moon-facebook"></i></a></li>
<li class="twitter"><?php echo $twitter_shares; ?><i class="moon-twitter"></i></a></li>
<li class="google"><?php echo $google_plus_shares; ?><i class="moon-google"></i></a></li>
<li class="tumblr"><?php echo $tumblr_shares; ?><i class="moon-tumblr"></i></a></li>
</ul>
</div>
And replace with this:
<div class="shares_container">
<ul class="shares">
<li class="facebook"><?php echo $facebook_shares; ?><i class="moon-facebook"></i></a></li>
<li class="twitter"><?php echo $twitter_shares; ?><i class="moon-twitter"></i></a></li>
<li class="google"><?php echo $google_plus_shares; ?><i class="moon-google"></i></a></li>
<li class="tumblr"><?php echo $tumblr_shares; ?><i class="moon-tumblr"></i></a></li>
<li class="linkedin"><?php echo $linkedin_shares; ?><i class="moon-linkedin"></i></a></li>
</ul>
</div>
Best regards!
Hi Mihaila,
Thanks for your reply. Yes, that’s exactly what I needed and it has worked perfectly. Please feel free to close this topic.
Kind regards.
You must be logged in to reply to this topic.