Forum Replies Created

Viewing 15 replies - 166 through 180 (of 472 total)
  • Plugin Author webtechideas

    (@webtechideas)

    If 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 pro
    Plugin Author webtechideas

    (@webtechideas)

    This 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 pro
    Plugin Author webtechideas

    (@webtechideas)

    It’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.

    Plugin Author webtechideas

    (@webtechideas)

    This 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_post with whatever content you like. A working example is as below

    add_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.

    Plugin Author webtechideas

    (@webtechideas)

    There 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.

    Plugin Author webtechideas

    (@webtechideas)

    Assuming this is for the free version since this forum is for the free version only. There is a primary key id for our plugin table wp_wti_like_post. You will have to execute an update query on the id for the post_id you need.

    Let’s say the post_id is 7 and the id of the row is 4 which is having unlikely votes and you need to reset the count to 10 here. The query will be

    UPDATE wp_wti_like_post set value=10 WHERE id=4

    Note:
    – Please have a back up the database before executing the query.
    – The table name may vary depending upon the table prefix you use.

    Thanks

    Plugin Author webtechideas

    (@webtechideas)

    Not 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

    Plugin Author webtechideas

    (@webtechideas)

    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

    Plugin Author webtechideas

    (@webtechideas)

    This 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 users
    Plugin Author webtechideas

    (@webtechideas)

    It 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

    Plugin Author webtechideas

    (@webtechideas)

    This forum is for the free version only. Can you please drop an email for the same to [email protected]?

    Plugin Author webtechideas

    (@webtechideas)

    You will have to make some css changes to achieve the layout for the above mentioned page.

    div tag with class entry will have position: relative
    img tag with class featured_image will have margin-top: 30px
    div tag with class watch-action will have position: absolute

    Note:
    – For this plugin, you will have to use the Alignment Setting as Left.
    – 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

    Plugin Author webtechideas

    (@webtechideas)

    When 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.

    Plugin Author webtechideas

    (@webtechideas)

    You 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.

    Plugin Author webtechideas

    (@webtechideas)

    No, 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.

Viewing 15 replies - 166 through 180 (of 472 total)