Forum Replies Created
-
AuthorPosts
-
WebtechideasKeymaster
This should not be a problem. The pro and the lite version are different and refer to different directories (wti-like-post-pro and wti-like-post) inside plugins folder. So if you simply overwrite the lite files, it may not work. If you do not need any data related to the lite version, then uninstall that and remove all its settings. Then freshly install the pro version, it should work now.
On the other hand, if it shows the pro settings on the plugin configuration settings page, then its not a problem in case it still shows wrong version.
Please let us know if you still face the issue.
WebtechideasKeymasterWe have sent you an updated version of the plugin. Please note this version is not officially released. Please check and let us know.
WebtechideasKeymasterYou can see other users mentioning that it is working for them so there is no reason for this not to work for you. What is the like and unlike count for the post where its showing total as 0? You can share your site url for us to check. You can also send us the file where you are implementing the same. If you are using any theme, then send that as well with your code. We will look into that and suggest.
WebtechideasKeymasterYou need to check with the other plugin how to trigger the login modal to come up on clicking the like/unlike buttons. They must be having a function to be called to show the login pop up. You will have to track this in the javascript file that comes with our plugin and implement the same there.
You can also put html code there in the setting Login required message like
Please <a href='#' class='popup-login'>Login</a> to vote
. Thisclass='popup-login'
is as per the documentation of the other plugin you referred.WebtechideasKeymasterWe would like to know which version you are using. There is setting Show like/unlike counts using which you can manage whether to show like/dislike counts or not.
WebtechideasKeymasterThe above function GetWtiLikeCount is already available with the plugin. You need to pass the proper variable in place of $post->ID as per your code. Please make sure there are like counts for the post you are checking with.
WebtechideasKeymasterTry using GetWtiLikePost(‘put’) as this will return the content so that you can combine them with other html content as you have done.
We have received your feedback about the above suggestion working properly.
WebtechideasKeymasterIf you are trying to put the plugin voting inside the “show-net-value-container”, then you have placed it outside of it. Can you please share your site url so that we can have a look at that? Also what is the use of “$net_count” variable?
July 1, 2015 at 3:06 am in reply to: List of users that have liked a post not displaying when using infinite scroll #346WebtechideasKeymasterWhen I checked the referred site, I don’t see the users at all who liked the post. Possibly you have disabled that.
This is manged through javascript. We have checked the code and it has the functionality to work with infinite scroll. We still need to look further into this.
WebtechideasKeymasterThat function may not be helpful as that shows the names as title pop up. Do you want to have functionality like it shows in wordpress.com hosted sites? In that case you will have to pull all user ids who liked the post and pass to this function get_avatar one by one. Hope this helps.
Thanks
WebtechideasKeymasterYou will have to click the thumbs down to cancel the vote.
WebtechideasKeymasterI do not understand what you are trying to achieve. First you said you want to show the like/dislike counts but here you have put the GetWtiLikePost function. Also check for how to implement action hook here. You should echo the total count. It would be helpful if you can set up a temp server with sharing access to us.
Thanks
WebtechideasKeymasterPlease put the loop code you are using. If that file is long, then you can e-mail that to us. Can you please also share your site url?
WebtechideasKeymasterAre you checking with different logged in users for the same post? What is your setting for “Checking Revoting With”? Is that set to IP or User Id?
WebtechideasKeymasterYou need to change the message a little bit like
$msg = 'User likes this image.';
to$msg = $like_count . ' user likes this image.';
Similarly you need to do for theelse
section. Also change the message content as per your like. -
AuthorPosts