webtechideas
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] saperate like/dislike on demo page??All the requests are checked referring to ip address. As long as you use the same system or ip, the dislike will continue to reduce the like counts as the requests are made from same system/ip. The moment there is a request from a different system/ip, then the dislike count will keep increasing. After this you will see both like and dislike counts having some values.
The above logic is same on both free and pro versions. If your site is live, then you can share your site url with others so that they can vote and you can see both values. If you are developing on local, then you can directly change the ip address present in the wti_like_post table for the post id you are checking for. You can then vote again (dislike if you had earlier liked and vice-versa) and see both like and dislike counts.
Additional feature with the pro version is tracking the user with user id. In case both users are using the same system or are inside a network, they are are treated as different users (if logged in).
Forum: Plugins
In reply to: [WTI Like Post] Support for 4.4There is another way where you can still allow only admin to be on https where as site on http.
In our plugin (wti_like_post_site.php), the “admin-ajax.php” file is loaded using the following piece of code
wp_localize_script( 'wti_like_post_script', 'wtilp', array( 'ajax_url' => admin_url( 'admin-ajax.php' )));You can change
admin_url( 'admin-ajax.php' )toadmin_url( 'admin-ajax.php', 'http' )Here we are forcing to use http protocol. You can find more details here.
Forum: Plugins
In reply to: [WTI Like Post] Support for 4.4@kazoooka, there seems to be something wrong with your wordpress set up. The ajax calls to save the like/unlike activity never get completed. Before it completes, there is another call to the same page which creates problem. Please check and rectify.
@mattzeit, what do you mean by “many of the images”? Our plugin uses very small size images and they should look fine.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Support for 4.4I believe by addon you mean our wordpress plugin. Can you please share some more information about what you mean “not working anymore”. If possible, please share the site url so that we can have a look at that.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] porfolio exclusionIs this related to free version or pro version? If pro version, then you can allow selected post types only to apply this plugin functionality. For more details on the pro version, please use this forum.
Forum: Plugins
In reply to: [WTI Like Post] Random assign starting votes?This functionality is related to pro version and we can not discuss this on this forum which is for free plugins.
Forum: Plugins
In reply to: [WTI Like Post] Don't subtract "dislike" from "like" count?The concept is if the voting is done from the same user, then it will just add/subtract from the existing value. So if someone has already liked and then clicks the dislike, then it will simply subtract from the like count. The moment it reaches 0, the count will get negative.That is how the plugin is built. Changing this logic means changing the whole plugin functionality which we will avoid.
Forum: Plugins
In reply to: [WTI Like Post] Random assign starting votes?Sorry there are no such functionality available with the current version.
Forum: Plugins
In reply to: [WTI Like Post] Issues with WordPress 4.3The plugin is compatible upto WP 4.2.4 as mentioned and has not been checked with WP 4.3. We will check and release an updated version.
Forum: Plugins
In reply to: [WTI Like Post] Way to remove count from social share?The auto-generated excerpts remove all html code and that’s the reason you see count only. You will have to add excerpts to solve this.
Forum: Plugins
In reply to: [WTI Like Post] Center position for buttons?You need to use this css in the file wti_like_post.css present inside css folder of our plugin
.watch-action .watch-position { margin: auto; width: 100px; }and remove this css
.align-left { float: left; }Please note the above width will be for showing the buttons with like counts. You will have to adjust it to show the loader and message.
Forum: Plugins
In reply to: [WTI Like Post] Like won't work (theme conflict?)Since it is an issue with the theme, you should first check with the theme developer. Please send your theme to [email protected]. We will check and get back to you.
Forum: Plugins
In reply to: [WTI Like Post] only let certain users like (vote)There is no such functionality currently available. You can customize the plugin to achieve this.
Forum: Plugins
In reply to: [WTI Like Post] Too many thumbsThere is a conflict with your theme. Please open
wti_like_post.cssfile which is present inside css folder of our plugin using a text editor.Search for
.watch-action img(around line 7) and put the code like this.watch-action img { border: medium none !important; margin-left: 0 !important; padding: 0 !important; }Search for
.lbg-style3 img, .unlbg-style3 img(around line 168) and put the code like this.lbg-style3 img, .unlbg-style3 img { float: left; height: 18px !important; width: 16px !important; }This should work for you. You can also change as per requirement or to fix the issue you are having.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Displaying Users who LikedHere is the screenshot link. You need to opt for yearly subscription for the future updates.
Thanks