Particularly with your situation, I would suggest you to go with the PRO version since it will give you the optimum controls to manage the plugin with admin settings along with more powerful features.
1. With the PRO version, you will get a setting using which you can disable the automatic loading of the buttons. So in your case the default buttons will not appear and you can use your custom position.
2. You need to change the css for the img tag in wti_like_post.css file inside plugins/wti-like-post/css folder. There you will need to change the float property to right as below.
.lbg-style1 img, .unlbg-style1 img {
float: right;
}
This will slightly vary as per the version you are using.
3. In case you want to use different image, then you can replace the existing image with yours. Let’s say you are using style1, then you need to replace the 2 images thumb_up1.png, thumb_down1.png inside plugins/wti-like-post/images folder. I would suggest you to have same size (height and width) images. If you want to have it of different size, then you need to change the css code accordingly.
There will be another advantage in using the PRO version. In above cases 2 & 3, you will be customizing the plugin css code. You can use the setting by which the default css file will not load. So you can completely move the plugin css code to your theme css file and customize as per your need. Also you will put the required images inside theme image folder and refer it correctly. Advantage will be your custom code and image will not be overwritten in the next plugin update.
Do let me know if you have any other questions.
Thanks
I searched through a number of the other posts in the support forum and found other users asking a similar question about locating the thumbs up and thumbs down with the category, author, tags, etc. They were also using <?php GetWtiLikePost();?> to display the plugin in a different location, and you instructed them to use add_filter('the_content', 'PutWtiLikePost'); to get rid of the thumbs up and thumbs down being displayed in the default location. However, I am having trouble finding that particular line of code in wti_like_post.php.
That was for a different version. If you are using 1.4.1 version, then please check line 129 inside wti_like_post_site.php file.