webtechideas
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] Invalid access“Invalid access” shows in case of session/cache issue. Let’s say you have opened the site on 2 tabs and you are logged in. Now you log out from one tab and then tries to vote on the other tab. In such case the system finds that your access is invalid and shows the message. This is following a security approach provided by wordpress to determine whether the user is trying to access the system correctly or not.
Forum: Plugins
In reply to: [WTI Like Post] Urgent! Admin-Ajax.php call Thousands 302 responseThis has been fixed with a modified version and we will release a new version with the fix.
Forum: Plugins
In reply to: [WTI Like Post] Undefined index – wti_like_post_admin.phpThis has been fixed with a modified version and we will release a new version with the fix.
Forum: Plugins
In reply to: [WTI Like Post] Undefined index – wti_like_post_admin.phpThis may occur in some specific server settings only. So can you please drop an email to [email protected] so that we can quickly cross-check this? Then we can think of releasing a new version with the fix.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Undefined index – wti_like_post_admin.phpWe are looking into this and will update you soon. Are you using this 1.4.2 version?
Forum: Plugins
In reply to: [WTI Like Post] Display a message before people vote.Yes, it’s there in the pro version. You will find an option called ‘Default Message’ which you can use for this purpose.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Identifying unlikersFirst of all you need to set
Check revoting withoption toUser Id. However there is no option which will list out the unlike users. Since this is related to the pro version, please use this forum for further discussions.Thanks
Forum: Plugins
In reply to: [WTI Like Post] Edit Pages are BlankWe are unable to figure out this issue as it breaks on few pages as you say. If all pages had issues, then it could have been straight forward. We are still looking into this and let’s see if this issue can be replicated at our end or not.
Questions:
– Do you have access to the error log of your site? If yes, please check what’s that exact error and let us know.Thanks
Forum: Plugins
In reply to: [WTI Like Post] Remove the Exclude Option from new/edit postYou can use
remove_actionto remove the above hook. Put the following code in active theme’s functions.php fileremove_action('admin_menu', 'WtiLikePostAddMetaBox');Thanks
Forum: Plugins
In reply to: [WTI Like Post] Edit Pages are BlankAs per you, it breaks only for few pages. So we would like to know if you see any difference in attributes for the pages where it does not break. We can know and fix the issue if you can share the error log from your server.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Remove the Exclude Option from new/edit postCan we know what’s the use/benefit of that?
Forum: Plugins
In reply to: [WTI Like Post] reset likesCan we know why you need to do so? Users and their votes are related so resetting like means the entry by that user for specific post will be removed. You can allow the user to revote only after a month from his last voted time using the voting period setting. Thanks.
Forum: Plugins
In reply to: [WTI Like Post] How can I include woocommerce products?There can be so many different plugins with different post types which is hard to control. Our plugin looks for
the_contentfilter to show our content. So any plugin which uses the above filter will be straightway compatible.Please check if there is any hook for showing the product details. I believe there will be. In that case, you can attach a function to that hook which will add a call to our
GetWtiLikePost()function that will show the like/unlike buttons. If it does not have a hook, then you will have to modify the theme file and putGetWtiLikePost()where you want to show the like/unlike buttons.Thanks
Forum: Plugins
In reply to: [WTI Like Post] How can I include woocommerce products?Sorry, I am not getting what exactly you are asking for. Can you please explain in details?
Forum: Plugins
In reply to: [WTI Like Post] How to add query_posts or order by likedYou can modify the layout for the most liked posts shortcode as per your requirement. Currently it shows in a tabular format so change that to match with your site’s layout.
Thanks