webtechideas
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] Great plugin, but a few questions….http://demowp.webtechideas.com/most-liked-posts/ shows the posts sorted by their like counts. This was a page template created as per twentytwelve theme.
Forum: Plugins
In reply to: [WTI Like Post] Great plugin, but a few questions….There are few points I would like to mention.
1. This plugin works with post content not post attachments (like videos here). But if you are using a single video for a single post, then you can surely use this plugin. Here we can say liking a post is same as liking a video.
If you want to show the thumb buttons near to the videos, then you will have to use the PRO version which allows you to put the thumbs buttons using shortcodes.
2. Yes, there is setting to allow only vote thumbs up or “like” but not to vote down. Please check the plugin settings section.
3. Yes, you can have a custom home page to show the most liked videos (posts) on homepage having similar coding to below.
query_posts( array( 'posts_per_page' => -1, 'meta_key' => '_wti_like_count', 'orderby' => 'meta_value_num', 'order' => 'DESC' ) );The above code is as per using PRO version which stores vote counts in post meta table. You can still use custom query to fetch the data from this plugin table to do the same.
4. A widget is available to show the most liked posts (videos) but you will have to customize the code to match with your specific requirements.
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Allow users to change their vote?This functionality is not available with the current version and is surely under consideration. There are some other functionalities on the pipeline so it will take some time to implement.
Forum: Plugins
In reply to: [WTI Like Post] Disable per pageYes, you should not be giving the user details here. I had asked for a screenshot only. Anyway I have checked following pages and don’t see the thumb buttons on those pages. So this is working as per plugin settings (pages disabled). So I am not sure what’s the exact issue you are referring here.
http://www.ourpolitics.us/about-us/
http://www.ourpolitics.us/contact-us/Thanks
Forum: Plugins
In reply to: [WTI Like Post] Disable per pageCan you please share the site url and the screenshot of the plugin settings page for me to check?
Forum: Plugins
In reply to: [WTI Like Post] Buddypress friends integration– Show the posts of my friends and the likes of my friends in one page:
If you are using buddypress, then you will have large number of users so also friends. So showing the posts of your friends and the likes of your friends in one page won’t be appropriate.So the better solution will be showing which posts they like as a widget on the friend’s profile page.
– Another wish is reblog posts (like in twitter):
This is completely a different functionality and beyond the scope of this plugin.Thanks
Forum: Plugins
In reply to: [WTI Like Post] Buddypress friends integrationIn this case as well, the plugin has to be customized to pick the list of what your friend likes. I would like to know how and where exactly you want to show this functionality. To be more precise, do you want this to be shown on a widget on your friend’s profile page?
Forum: Plugins
In reply to: [WTI Like Post] Buddypress friends integrationAre you referring to this plugin Buddypress Friends?
The PRO version plugin records users who like/unlike a post. So this will meet with your requirement.
But it’s a completely independent plugin dealing with wordpress core stuffs and custom post types. What I mean is it won’t be able to know the friend relation of a specific user. In such a case the plugin has to be customized a bit to get the data as per the relation.
Do let me know if you have any other queries.
Forum: Plugins
In reply to: [WTI Like Post] Vote or see counts on excerptsPlease use this link http://ww.wp.xz.cn/support/view/plugin-reviews/wti-like-post
Forum: Plugins
In reply to: [WTI Like Post] Vote or see counts on excerptsI will have a look at this. But I think it will be better if you can share the theme as integrating it will make things easier to check. You can put the zip file on your server and share the link to the email given on my site contact page. My author name here points to my site.
Forum: Plugins
In reply to: [WTI Like Post] Vote or see counts on excerptsFirst of all this plugin does not directly work with post excerpts. So either you have to modify the theme file by adding the function (as given in my first comment) or use the excerpt filter in functions.php file.
Since you seem to consider switching to a different theme, why don’t you try once with the theme file modification assuming you have not tried this yet.
You can have a look at the following themes.
– http://www.tripwiremagazine.com/2013/04/grid-style-wordpress-themes.html
– http://www.wphub.com/free-wordpress-themes/
– http://www.paddsolutions.com/top-pinterest-inspired-wordpress-themes-2012/
– http://www.dessign.net/grid-theme-responsive/Note:
– I have not tried the plugin with the above themes.Forum: Plugins
In reply to: [WTI Like Post] Already voted message not disapear after Refresh pageThanks for your compliments.
There is one option in the plugin settings page on the admin end which says “Already voted message”. You can remove the text from there but this will remove the message which comes up when user tries to vote again and you have disabled multiple votings.
If you want that to come up only when user tries to revote, then you will have to modify the plugin file. The following instructions are based on the assumption that you are using 1.4 version.
– Open the file wti_like_post.php inside the plugin folder.
– Go to line no 658 which says$msg = GetWtiVotedMessage($post_id);
– Change that to$msg = '';Do let me know whether it worked for you or not. Thanks
Forum: Plugins
In reply to: [WTI Like Post] Vote or see counts on excerptsI don’t think my plugin is used on the above site nor the other one http://abc-davis.com/test-wti-like/ since I don’t see the plugin js and css files loaded on the site.
Also I am not sure why you are referring to the excerpt length with respect to my plugin where we should be considering the_excerpt filter only.
I had checked the code I gave you on a different theme so probably the theme you are using uses the excerpt concept in a different way. This may be the reason for the above code not working as per expectation.
You can do one thing. Disable/remove the excerpt length filter and have my code and see whether it works or not.
Forum: Plugins
In reply to: [WTI Like Post] Vote or see counts on excerptsJust add the above code to theme’s functions.php file.
Forum: Plugins
In reply to: [WTI Like Post] Vote or see counts on excerptsUse the following code. You may need to adjust the css for appropriate layout.
add_filter('the_excerpt', 'WtiLikePostExcerpt'); function WtiLikePostExcerpt($excerpt) { return $excerpt . GetWtiLikePost(); }