Reaction buttons helps the readers of your blog to react to your blog posts. With help of this feature, you can get feedback from your readers. This is very interesting as well as very helpful for those readers of your blog who don't have enough to say about your blog posts. More or less, reaction buttons are something like polls for every blog posts. Fortunately Blogger has already included this feature for us. So this tutorial will show you how to implement that widget in your blog. Besides I've found that blogger has limited number of reaction buttons. So, in addition I'll show you how to add infinite number of buttons in your blog.
To enable Reaction buttons
- log in to your blogger account and go to 'Layout' section.
- Click 'Edit' link on the 'Blog Posts' gadget.
- A new window will appear where you'll find many options including 'Reactions'. Check the box in order to enable reactions for your blogger.
- By default blogger provides 'funny', 'interesting' and 'cool' reactions for you. However you can add your own. To do this, click 'Edit' and type your own reactions name. However you can't insert more than 80 characters in reaction input field. If you are not satisfied with this, means if your total reactions characters are more than 80 and blogger is not permitting you to insert more reaction buttons, follow these next steps; otherwise jump to step #7.
- Right-click on reaction field area and select 'Inspect element'.
- Find out
input
tag withreactions-editor
id. Now look formaxlength
attribute and change its value from80
to some higher value.
For e.g. I've changed it from80
to200
. To accept the change click out side of theinput
tag.
- Click 'Save arrangement'.
- You can even customize the location of the reaction buttons within the post by dragging the reaction box in 'Arrange Items' section. If everything goes right but reaction button didn't appear that’s because your blogger template is modified. In order to fix this, go to 'Edit HTML', search for (Ctrl+F)
<div class='post-footer-line post-footer-line-1'>
or<div class='post-footer-line post-footer-line-2'>
or<div class='post-footer-line post-footer-line-3'>
or<data:post.body/>
and place the following code after that. - Click 'Save template'.
<span class='reaction-buttons'>
<b:if cond='data:top.showReactions'>
<table border='0' cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='reactions-label-cell' nowrap='nowrap' valign='top' width='1%'>
<span class='reactions-label'><data:top.reactionsLabel/></span>
</td>
<td>
<iframe allowtransparency='true' class='reactions-iframe' expr:src='data:post.reactionsUrl' frameborder='0' name='reactions' scrolling='no'/>
</td>
</tr>
</table>
</b:if>
</span>
I tried my best to keep things as simple as possible. Feel free to ask your question.
Happy Blogging.
Can you help me, how to add this widget for COMMENTS?
ReplyDeleteCan you give me live demo?
ReplyDeleteHow do I remove the border around the reaction widget? Not sure what part will change this.
ReplyDeletehow can i display reactions in mobile version?
ReplyDeleteNice post its so awesome
ReplyDelete