webtechideas
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] Displaying Users who LikedThis functionality is available in the PRO version. User avatars will be shown below the like/unlike buttons those had liked the post. This version is not officially released yet but we can send you. For more details on PRO version, please drop an email or use this forum.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Most liked posts by any userThis is something which is not yet available with the current version. We need to look into this. We would like to know whether you are referring to the free version or the PRO version. This seems to be a functionality related to PRO version. If that is the case, then please email us or use our forum.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Show most liked posts on page templateYou can use
most_liked_postsshortcode to do this. Please check the manual for more details on this shortcode functionality.Thanks
While developing a plugin, we check with the default theme and it worked perfectly in this case. We are not sure what you mean by “alter the layout”. If it’s breaking your layout, then the theme you are using does not have enough space to show the output. Can you please share your site url?
As far as using a pop up is concerned, it has 2 disadvantages. One is it will show only after clicking, not what’s already available or should be shown. Secondly, we do not want to rely on other plugins as we will have to keep checking with them every time they update. We can not ask all users to use another plugin to use ours. Also what will happen if they discontinue their plugin?
Since this is related to pro version, please use this forum for further communications.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Prevent number of votes from being displayedYou can simply remove the above span tag as that is the placeholder where the counts are shown.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] User ID is set to 0 in databaseTracking users based on user id is a functionality in the PRO Version only and that’s the reason this user id is not recorded in the free version. Since you know what needs to be changed, please change that if you need.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Unlike count in admin posts pageThat is available in the latest pro version. Please reply on the purchase email so that we can send you the plugin. For more queries on the pro version, please use this forum.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] BbpressSorry, this is not yet compatible with bbpress.
Forum: Plugins
In reply to: [WTI Like Post] WP Super CacheThere must be some settings under Super Cache to ignore functionality related to some other plugin. Please check with their forum as well. Can we know which theme you are using? It may be a problem with custom integration.
Forum: Plugins
In reply to: [WTI Like Post] Text Options not SavingWe checked 1.4.2 version and it’s working. Are you sure you are hitting the Save button not the Reset button as they are next to each other? Try deactivating and activating the plugin again and then save new messages.
Forum: Plugins
In reply to: [WTI Like Post] Error message reads to update menusPlease open the wti_like_post_admin.php file using any text editor and change the line
if (!wp_verify_nonce($_POST['wti_like_post_meta_box_nonce'], basename(__FILE__))) { return $post_id; }to
if ( empty( $_POST['wti_like_post_meta_box_nonce'] ) || !wp_verify_nonce( $_POST['wti_like_post_meta_box_nonce'], basename(__FILE__) ) ) { return $post_id; }Do let us know if this worked or not.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Show number of votesIt’s there in both versions. Please let us know if you need anything specific here.
Forum: Plugins
In reply to: [WTI Like Post] Error message reads to update menusWe have figured out the issue. Please allow us some more time to suggest a fix for this.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] No Space between Thumbs and NumbersThere have not been any changes. We have checked in both left and right aligned settings. In both cases, the like/unlike counts come after the thumb icons. So possibly there is some conflict with your theme or you have changed the plugin code.
Open
wti_like_post.cssfile using any text editor and change thepaddingcode for.lc, .unlcto0 6px 0 0. Please change the value which suits your layout the most. Please let us know if you need any further help.Thanks
Forum: Plugins
In reply to: [WTI Like Post] WTI Like Post not working with automattic.com WP Super CachePossibly you are using the theme Truemag. You need to modify the place where the like & unlike counts are showing. If you can wrap those values with a span tag having class as
lc-post_idandunlc-post_id, then it should work for you. Herepost_idshould be the variable having the current post id.The output of code for post id 608 should look something like below
<span class="lc-608">+8</span>for like count and<span class="unlc-608">0</span>for unlike count.Do let us know if this worked for you or not.
Thanks