webtechideas
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] Most popelar categoryDo you mean to pick the category whose posts have sum of most like counts?
Forum: Plugins
In reply to: [WTI Like Post] thumbs more than once in the same postThe conflict will be due to ID attribute. It’s a protocol that more than one HTML elements on the same page can’t have the same IDs. Even though there won’t be any problem in displaying the page content but definitely there will be conflict when javascript comes into play. So it’s the same problem in your case.
I am making necessary changes to use only class attributes instead of ID. But in some cases as yours, there may be still some problems because I have to use IDs for some elements.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Styles not ChangingThere are 3 styles ( different images) used in this plugin. I am not sure what was the exact problem. Also whenever you are putting any questions, then please share your site url so that I can at least have a look at the issue.
There is no direct functionality available for this but you can do this by modifying the code a bit.
– A css class ‘jlk’ is being used to trigger the click event to make the ajax call. You will find this inside GetWtiLikePost function.
– Modify the code for generating this class dynamically. Use a variable instead and use following code to assign value to that variable.if(!is_home()) { $class = 'jlk'; }The above code will assign the class only on inner pages not on home page.
Please let me know if this helped or not. Thanks.
Forum: Plugins
In reply to: [WTI Like Post] WTI Like Post Pro Plugin DownloadI apologise for the problem you faced. “Stop Spammer Registration” is a very good security plugin but I am not sure why it restricted you. Please give me some time, I will send the file to your email address.
Forum: Plugins
In reply to: [WTI Like Post] "Like" counts offPlease try the below.
if(is_home()) $wti_like_post .= "/<div class='action_unlike' >"; else $wti_like_post .= "<div class='action_unlike' >";Make sure you do the concatenation properly.
Forum: Plugins
In reply to: [WTI Like Post] Can't Reset Post Like CountsThis seems to be a very strange issue and reported for the very first time. I suspect your wordpress setting is bit different than the traditional set up. Otherwise the above url should be working fine.
If you can modify the wti_like_post.php file, then please open this file.
– Search for form tag with name as “most_liked_posts”.
– Remove the action attribute from the above matching form tag.Please let me know if this fixed the issue or not.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Already voted bugThis happens mostly when you are inside a network. We can only collect public IP address and in that case all the systems inside the network will have same IP. Also sometimes Internet Service Providers suffle the IP addresses. So in that case your IP might have registered a voting.
If you are allowing only registered users to vote, then I will suggest you to go for the PRO version (link available on description page http://ww.wp.xz.cn/extend/plugins/wti-like-post/) which allows you to cross check voting with user id. So you won’t have this problem with IP.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] "Like" counts offIt may be a good idea as per your situation but not a universal one as in other cases we will see the thumb up/down icons.
If you want to have as you said, then open up wti_like_post.php file line no 672 and replace the following line
$wti_like_post .= "<div id='action_unlike' >".with
if (is_home()) $wti_like_post .= "/<div id='action_unlike' >".Thanks
Forum: Plugins
In reply to: [WTI Like Post] "Like" counts off“+10 is nothing but the like and unlike count.” means here +1 is the like count and 0 is the unlike count. Yes, the count stays with the post forever if you do not reset that to 0 in the admin end.
I am checking with the Arras theme. The problem you are facing with the updated like/unlike count is due to some conflict with the theme. Also for Featured Stories, it does not always show the post excerpt. If the title is longer, then excerpt does not show up. Even if I find out a solution for this to work with post excerpts, it may not completely work with your theme.
The best way to check whether the plugin is working fine or not is by switching to default theme. If there is still some problem, then its due to the plugin.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] "Like" counts offThis plugin works with post content and the theme you are using shows post excerpts for the featured posts. That’s why it does not seem to work. Also whatever you see on featured posts like +10 is nothing but the like and unlike count. Since it’s not meant for excerpts, it just places the counts only. I will have to look into the theme code to find out the problem. Assuming you are using the 1st theme listed here https://github.com/zyml/arras-theme/downloads. Please confirm.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Voting for own postsThis is under consideration. The reason this was not added is since guest user voting and re-voting are allowed, author can easily vote again and again by logging out. If anyone of them is turned off, then it can be controlled to some extent. Still I will add this functionality as it seems to be a required one.
Forum: Plugins
In reply to: [WTI Like Post] [Plugin: WTI Like Post] Adding a messageSorry, you had asked just to put a text and never told that you want that to be clickable as well.
Anyway you can put that text inside the anchor tag having class
jlk. You may need to change the CSS a little bit.Forum: Plugins
In reply to: [WTI Like Post] [Plugin: WTI Like Post] Adding a messageYou can do by adding an html element like span just inside the div having class watch-action with the content you want. Here is an example
<span style="float: left; margin-right: 10px;">Your Text</span>Please let me know if this met your requirement or not.
Forum: Plugins
In reply to: [WTI Like Post] Multisite CompatibilityGood to know that. Still I will add the functionality for network activation 🙂