webtechideas
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] Need Help for add a DIV code in Every end of postIf you are talking about the hook, then the code I shared works with the PRO version. So if you are using the lite version, it will not work.
Forum: Reviews
In reply to: [WTI Like Post] Free vs proThis functionality is not available in the free version. With the PRO version, you can decide whether you want to use the IP or user id to cross-check the user. This is mainly useful when you are within a network. You can check the features in the PRO version here.
Forum: Reviews
In reply to: [WTI Like Post] Free vs proIt’s NOT broken. The plugin uses IP address to track the user. So if user 2 is using the same IP as user 1, then it will consider that both are same user. This will mainly happen in case both users are using the same system or systems in the same network. It’s impossible to get IPs of the systems inside a network. If you will use different systems, then you will see correct output. Please check.
Forum: Plugins
In reply to: [WTI Like Post] Need Help for add a DIV code in Every end of postThis is a manual process in the free version. But can be easily done in the PRO version which has a hook for this. You can attach a function to the hook
get_wti_like_postwith whatever content you like. A working example is as belowadd_filter( 'get_wti_like_post', 'get_wti_like_post_div', 10, 1 ); function get_wti_like_post_div( $like_output ) { return '<div class="likethis">Like this?</div> ' . $like_output; }This will add the div code to all the posts.
Forum: Plugins
In reply to: [WTI Like Post] Show the Most-Liked-Posts like The-Latest-PostThere is nothing wrong with the above shortcode, it just shows the title and like count. With the pro version, you will get one template file which you can modify to match with your site layout.
Forum: Plugins
In reply to: [WTI Like Post] How to manually remove some votes from a postAssuming this is for the free version since this forum is for the free version only. There is a primary key
idfor our plugin tablewp_wti_like_post. You will have to execute an update query on theidfor thepost_idyou need.Let’s say the
post_idis 7 and theidof the row is4which is having unlikely votes and you need to reset the count to10here. The query will beUPDATE wp_wti_like_post set value=10 WHERE id=4Note:
– Please have a back up the database before executing the query.
– The table name may vary depending upon the table prefix you use.Thanks
Forum: Plugins
In reply to: [WTI Like Post] Exclude all postsNot sure if unlable is a correct term or not. Or this is enable?
If you want to exclude all posts, then you can put them under a category and select the category from the “Exclude selected categories” option.
Please let us know if we understood your question correctly or not.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] likes are stored by IP and not by user_id?This version does not deal with user id even if a column is there in the table as checking is done only with IP. This column is only to avoid table alteration in future updation/upgrdation process.
The PRO version has the ability to check the revoting with user id. For this user has to be logged in and it won’t be a problem in case user resets IP.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Exclude WooCommerceThis is not currently possible. But if you want to disable this on the WooCommerce products page, then you can add that page id to the “Exclude post/page IDs” option but it will still show up on the product details page.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] View usersIt seems like this is related to pro version. Since this forum is for the free version only, please put the same on WTI Like Post PRO Support Forum and we will take the discussion further.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Pro Version Pre-Purchase QuestionThis forum is for the free version only. Can you please drop an email for the same to [email protected]?
Forum: Plugins
In reply to: [WTI Like Post] How to put the "Like" button just below the post titleYou will have to make some css changes to achieve the layout for the above mentioned page.
–
divtag with classentrywill haveposition: relative
–imgtag with classfeatured_imagewill havemargin-top: 30px
–divtag with classwatch-actionwill haveposition: absoluteNote:
– For this plugin, you will have to use theAlignment SettingasLeft.
– You will have to make sure the above css changes does not affect any other pages. You can also look for any other class for the above tags which may be more helpful.Thanks
Forum: Reviews
In reply to: [WTI Like Post] Not really a free pluginWhen you consider a plugin, you should look at 2 things.
1. What are the features available and they work as mentioned or not.
2. The functionalities provided by similar plugins.If you consider these 2 points, you will definitely find this plugin lot more useful than other plugins. You will also find some of the free features which are only available in pro version of other plugins.
Another important point. This plugin is more than 2 years old. We have not taken out any of the features from free version and put them in pro version. The features in the free version are still maintained so also the plugin.
Forum: Plugins
In reply to: [WTI Like Post] Custom queryYou can customize/copy the shortcode used to show the most liked posts. You will have to provide the layout that matches with your site layout.
Forum: Plugins
In reply to: [WTI Like Post] WPML compatibilityNo, it’s not yet compatible with WPML. We are looking into this. But you can create your language file, put that inside this plugin and use them as a standard process.