webtechideas
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] Buttons just near the article titleApology for the late reply. As of now there is no functionality to allow it to be shown near the title.
Forum: Plugins
In reply to: [WTI Like Post] add a form when the user clicks the UnlikeThere is a javascript file within this plugin which takes care of this like/unlike button click activity. You need to change the code when the dislike button is clicked. Since thickbox modal is native to wordpress, you can open thick box with feedback form and process that using ajax.
Forum: Plugins
In reply to: [WTI Like Post] add a form when the user clicks the UnlikeYou need to open a form on clicking the dislike button and process the dislike functionality along with form data once posted.
Can you please provide more details? Is this the functionality related to pro version where the names/avatars of users are shown next to the thumbs? If yes, then you need to modify
GetWtiUserLikesfunction.Thanks
Forum: Plugins
In reply to: [WTI Like Post] Place add the when the User UCurrently this is not within the scope of the plugin. We will see if this can be added in future version.
Forum: Reviews
In reply to: [WTI Like Post] GreatThank you very much.
Forum: Reviews
In reply to: [WTI Like Post] GreatSince you did not change the setting, it allows you to vote many times. To explain the use of each setting, description is provided right there. Same way “Voting period” meaning is mentioned next to the field i.e. “Select the voting period after which user can vote again.” The setting options also give an idea what exactly it does. This has been mentioned in the referred plugin page so also in the downloadable manual available here. These references are mentioned on this plugin description page to make it easier for user to understand and implement. Also to have a live experience, we have a demo site where anyone can check. The current setting (same in both lite and pro version) allows you to vote just once, so you can have a look at there.
So please install the plugin, check the setting and let us know. We are sure once you set it up properly, you will just love it. One more thing this plugin has been there for over 4 years having a rating of 4.9 with more than 113,000 downloads. So it can’t just be a trash. You can also take a glance at the reviews page and see how users have been delighted using our plugin.
We are here to explain anything related to the plugin, please don’t hesitate to put any query.
Forum: Reviews
In reply to: [WTI Like Post] GreatThis depends upon how you have set it up. There is setting “Voting Period” available using which you can control how many times the user can vote the same post. Did you check the setting? By default user can vote as many times as he want. You can set that to “Only once” so user won’t be allowed to vote again for the same post. Please check and let us know.
Forum: Plugins
In reply to: [WTI Like Post] Adding thumbnail from post in top votesYou can use
get_the_post_thumbnailto get the thumbnail for the post. For more reference, please refer to the codex here.Thanks
Forum: Plugins
In reply to: [WTI Like Post] too much empty space under like buttonsYou seem to be using some other plugin. Can you please enable ours so that we can check?
Since this is related to the pro version, can you please use the support forum here? Please also mention your wordpress version and the plugin version you are using.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Plugin creating a block of thumbs up/thumbs downThis is because you have forcefully set the height and width of images. In your style.css, following codes are causing problem.
/** * Make sure images with WordPress-added height and width attributes are * scaled correctly. */ .comment-content img[height], .entry-content img, .entry-summary img, img[class*="align"], img[class*="wp-image-"], img[class*="attachment-"], #site-header img { height: 101px; width: auto; }and
/* Responsive images. Fluid images for posts, comments, and widgets */ .comment-content img, .entry-content img, .entry-summary img, #site-header img, .widget img, .wp-caption { max-width: 100%; }If you remove these or set correctly, then the problem will be solved.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Google-ErrorSorry, this is something strange and we are not quite sure as well. If you have already deleted our plugin, then these links should no more be present.
Did you just delete the files or followed wordpress process of deleting a plugin? Can you ask google for a fresh crawling, might be it’s still using old urls?
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Like and Dislike buttons in sidebar and footer.Those sections must be using
the_contentfilter to load the posts. You can remove the filterPutWtiLikePostbefore the loop for listing the posts in those sections and then adding the same filter after the loop.Forum: Plugins
In reply to: [WTI Like Post] Shortcode display like buttonThere is no shortcode available for this plugin. You can put
<?php GetWtiLikePost(); ?>in the template file where you want to load the buttons.However with the pro version, you can use
[wtilp_buttons]inside page content and the like/unlike buttons will be loaded. Please note that this is not a shortcode.