Title: Customization
Last modified: August 21, 2016

---

# Customization

 *  [nickgbaker](https://wordpress.org/support/users/nickgbaker/)
 * (@nickgbaker)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/customization-13/)
 * I have seen a number of sites (lovetaza.com and smallfryblog.com, for instance)
   customize this plugin quite a bit, and I am hoping to accomplish something similar.
   However, my knowledge of programming is still pretty limited, so I have a few
   questions I would appreciate some help with.
 * (1) I have used <?php GetWtiLikePost();?> to locate the thumbs up image at the
   bottom of the post with the categories and author. Doing so makes the thumbs 
   up image appear twice, once where I want it, and once in the default location.
   How do I make sure the thumbs up in the default location DOES NOT appear?
 * (2) I would like the number of likes to appear to the left of the image rather
   than to the right. Where and how do I change this?
 * (3) Which CSS properties do I need to work with to use a custom image rather 
   than the thumbs up?
 * Sorry for all the questions, but I appreciate the help, and thanks for the great
   plugin.
 * [http://wordpress.org/plugins/wti-like-post/](http://wordpress.org/plugins/wti-like-post/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [webtechideas](https://wordpress.org/support/users/webtechideas/)
 * (@webtechideas)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/customization-13/#post-3965213)
 * Particularly with your situation, I would suggest you to go with the [PRO version](http://www.webtechideas.com/product/wti-like-post-pro/)
   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
 *  Thread Starter [nickgbaker](https://wordpress.org/support/users/nickgbaker/)
 * (@nickgbaker)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/customization-13/#post-3965278)
 * I searched through a number of the other posts in the support forum and found
   other users asking [a similar question](http://wordpress.org/support/topic/plugin-wti-like-post-changing-buttons-location?replies=7)
   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.
 *  Plugin Author [webtechideas](https://wordpress.org/support/users/webtechideas/)
 * (@webtechideas)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/customization-13/#post-3965341)
 * 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.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Customization’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wti-like-post_0f88b8.svg)
 * [WTI Like Post](https://wordpress.org/plugins/wti-like-post/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wti-like-post/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wti-like-post/)
 * [Active Topics](https://wordpress.org/support/plugin/wti-like-post/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wti-like-post/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wti-like-post/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [webtechideas](https://wordpress.org/support/users/webtechideas/)
 * Last activity: [12 years, 10 months ago](https://wordpress.org/support/topic/customization-13/#post-3965341)
 * Status: not resolved