Recently blogspot received an update for its blog posts allowing users to attach social media share buttons to the bottom of their blog posts. However these buttons don't show even after you enable them through the page elements settings.
Despite this little set back I have been able to come up with a solution to your problem although it does entail the editing of your page template.
What you need to do is add the following piece of code to the design/edit html template.
NOTE: Make sure you do a BACKUP of your original tempate before making any changes!
Once you have made a backup enable the the 'Expand Widget Template' and search for 'post-footer-line' which will look something like this;
After the </div> enter the following code following code and then save and test your template.
Despite this little set back I have been able to come up with a solution to your problem although it does entail the editing of your page template.
What you need to do is add the following piece of code to the design/edit html template.
NOTE: Make sure you do a BACKUP of your original tempate before making any changes!
Once you have made a backup enable the the 'Expand Widget Template' and search for 'post-footer-line' which will look something like this;
<div class='post-footer-line post-footer-line-2'>
<span class='post-labels'>
<b:if cond='data:post.labels'>
<data:postLabelsLabel/>
<b:loop values='data:post.labels' var='label'>
<a expr:href='data:label.url' rel='tag'><data:label.name/></a>
<b:if cond='data:label.isLast !="true"'>,</b:if>
</b:loop>
</b:if>
</span>
</div>
After the </div> enter the following code following code and then save and test your template.
<div class='post-share-buttons'>
<p><b:include data='post' name='shareButtons'/></p>
</div>
No comments:
Post a Comment