Forum Replies Created

Viewing 15 posts - 46 through 60 (of 164 total)
  • Author
    Posts
  • in reply to: Upgrading from 2.1 to 2.2 Broke WTI Like Post Pro #425
    Webtechideas
    Keymaster

    Please share your site url so that we can have a look at the issue. Just want to know if you have also sent an email to support@webtechideas.com?

    Webtechideas
    Keymaster

    We did not find this issue at our end. However you can change the code as suggested below which will fix the above warning message. Open the above file using any text editor and just above the mentioned line, please add the following piece of code:

    if (!is_array($instance['category'])) {
    	$instance['category'] = (array) $instance['category'];
    }

    This should work. Please let us know.

    Thanks

    in reply to: Post Likes of User #408
    Webtechideas
    Keymaster

    We checked the code and it’s working correctly. Please make sure that the user you are trying to check has already liked some posts on your site while logged in.

    You can also echo the query in the content-likes file and run that on phpmyadmin to see the results. We are sure it will pick up the user id but there won’t be anything for him in the wti_like_posts table for which it’s not showing any result. In case it does not pick the user id, you can simply hard code with any user id and see it’s now loading anything or not. If there is any error in the query, you can also see that.

    Thanks

    in reply to: WTI Like Post Exclided Option Won't clear #407
    Webtechideas
    Keymaster

    Alternatively you can use “Exclude post/page IDs” option in the plugin configuration settings page. You can add or remove any post id as per your requirement. If this is the url wp-admin/post.php?post=8&action=edit in you post edit screen, then 8 is the post id.

    in reply to: Custom Like Button #403
    Webtechideas
    Keymaster

    Can you please share your site url? If you have your own cutom button, please make sure that it’s having proper code to carry out the click functionality.

    in reply to: Show grouped value of likes/dislikes #398
    Webtechideas
    Keymaster

    We have sent you an email with update. Please check.

    in reply to: Get Cume Total Count for Internal Reporting #395
    Webtechideas
    Keymaster

    This export functionality is under consideration. We will release a new version for this.

    in reply to: Problem with True Mag theme #392
    Webtechideas
    Keymaster

    Apology for the delayed reply. Can we know the plugin version and your wordpress version please? One question: do you face this problem when using wordpress default theme?

    in reply to: Nothing Displaying #391
    Webtechideas
    Keymaster

    Apology for the delayed reply. While registering the activity, we do not check for post type. So if you like/unlike any custom post type, we expect this to be recorded as well. We will check this and get back to you.

    Thanks

    in reply to: Plugin Not Showing #390
    Webtechideas
    Keymaster

    Can you please share your site url so that we can have a look at that? Please make sure the option “Disable automatic loading of buttons for post content” is set to “No”.

    in reply to: Display current post position #384
    Webtechideas
    Keymaster

    You need to get the post ids of the top 20 most liked posts. You can query our like table to find out the sum of likes of each post group by post id and sorted by the sum of like count. You can refer to most liked posts shortcode. Once you have the list of post ids, you can check for the current post’s id with the array of most liked post ids by using in_array function. If that function returns true, then that specific post is in the top 20.

    Webtechideas
    Keymaster

    The changes are lost because the content is loaded from ajax call where you have not added the necessary changes. You can modify the javascript code dealing with this ajax call. Please open wti-like-post.js file present inside ‘js’ folder using any text editor. There you need to change the following lines

    jQuery(".lc-" + post_id).html(response.like);
    jQuery(".unlc-" + post_id).html(response.unlike);

    to

    jQuery(".lc-" + post_id).html(response.like + ' votes');
    jQuery(".unlc-" + post_id).html(response.unlike + ' votes');

    As you can see, we have concatenated the term ‘votes’ to the like and unlike count. You can also apply the thousands separator to the response above. Please refer here. Do let us know if this helped or not.

    Thanks

    in reply to: latest version shows 2.1 #377
    Webtechideas
    Keymaster

    Latest version is 2.2. We will check and let you know. BTW if the functionalities are working fine as per the features mentioned, then it should not be a problem.

    in reply to: Nothing Displaying #374
    Webtechideas
    Keymaster

    It does not show up on buddypress sections like activity, groups, forums etc. When you like/unlike wordpress default posts, then that like/unlike activity is shown on buddypress activity section.

    Please share a screenshot of our plugin configuration settings page. In case of some themes which do not use wordpress filters properly, the like/unlike buttons will not load automatically as this is dependent on those filters. The theme you are using is a paid one so please send that as well.

    Thanks

    in reply to: Redirect URL #368
    Webtechideas
    Keymaster

    Sorry, we don’t think it’s possible.

Viewing 15 posts - 46 through 60 (of 164 total)