Ko Min
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Voting] [Plugin: WP Voting] Post RankingGreat! happy to hear that ??
Forum: Plugins
In reply to: [WP Voting] [Plugin: WP Voting] HTML codeSorry! I don’t get you. Can you explain a little bit more about what you want to achieve.
Cheers!
Forum: Plugins
In reply to: [WP Voting] [Plugin: WP Voting] Post RankingPlease use below code to alter query_posts.
add_filter('posts_orderby', 'edit_posts_orderby'); add_filter('posts_join_paged','edit_posts_join_paged'); function edit_posts_join_paged($join_paged_statement) { global $wpdb; $join_paged_statement = "LEFT JOIN ".$wpdb->prefix."wpv_voting ON ".$wpdb->prefix."wpv_voting.post_id = $wpdb->posts.ID"; return $join_paged_statement; } function edit_posts_orderby($orderby_statement) { global $wpdb; $orderby_statement = "(".$wpdb->prefix."wpv_voting.vote_count) DESC"; return $orderby_statement; }
Wrap those two filters with conditional statement not to effect every query_posts. Something like this
if(!is_admin() && is_page('Home')){ //two filters }
Cheers! ??
Forum: Plugins
In reply to: [WP Voting] [Plugin: WP Voting] Post RankingOh guys! I didn’t know that you guys are implementing top voted feature. I got a lot of work to do at my primary job. So I couldn’t check this blog post lately. If I knew it early, that make me a lot easier to develop the top voted widget. Anyway, I’ve finished the top voted widget and which is included in version 1.7. Please let me know if you need my help.
Thanks for all the contributors and supporters.
Cheers!
Forum: Plugins
In reply to: [WP Voting] [Plugin: WP Voting] Post RankingHi,
I am going to do as a widget or shortcode. It will be included in next release.
Cheers!
Forum: Plugins
In reply to: [WP Voting] [Plugin: WP Voting] Useful plugin! Feature requestHi gn,
I’ve added the custom css feature on version 1.3 as you suggested. I’ve also included your plugin link under the resources section. Thank you for the good advice.
Cheers ??
Forum: Plugins
In reply to: [WP Voting] [Plugin: WP Voting] Useful plugin! Feature requestHi gn,
OK! I will add customise vote button in next release.
Cheers ??
Forum: Plugins
In reply to: [Facebook Connect] Facebook Connect error: login process failed!For me after I enabled the php_openssl, the error “Facebook Connect error: login process failed!” just gone.
Here are the steps to enable the php_openssl on wamp
Click on the wamp icon > PHP > PHP extensions > “Click” php_opensslYour wamp server will be restarted automatically. If not, try to “Restart All Services”
Thanks!
Instead, please, let me ask you this: is your plugin designed to work under a brand-new 3.0 installation configured for multisite, 2+ blogs on a single database, and NO other plugins or support apps?
Yes! It is. I’ve developed this plugin using brand-new wordpress 3.0 multisite enabled.
It could take a lot of work to reconfigure a 10-blog site for a new table name (table prefix + ms_posts).
Plugin will create only one table named (table prefix)+ms_posts (normally it is wp_ms_posts). Table type is “views” type (virtual table)
Can you tell us why there would be two different naming conventions and where the _ms_ naming scheme originally came from?
ms came from the plugin name “multisite”. Like the other pulgins do (e.g NextGen Gallery plugin creates wp_ngg_album)
Hi,
It is a little bit difficult to sort it out because my plugin works well on my client sites even with different configurations.
Obviously I can’t access your database so I can’t tell what is giving you such a problem. Are there any error message or something?200+ users downloaded my plugin and they never rated my plugin or wrote any feedback so I can’t not tell my plugin is working well or not on their sites.
I will also look into it again. At the same time you try to deactivate one of your blogs (not the plugin) and reactivate it again.
Thanks!
Forum: Networking WordPress
In reply to: Super admin not showingYes! It’s work for me too.
I’ve just changed the user_login, user_nickname and display_name to “admin” in wp_users table.Thanks!
Hi,
Actually, view is not the table name. It is mysql view type table.
In your DB, there should be a table name called your table prefix + ms_posts. If you didn’t change the table prefix when you installed your wordpress, table name will be wp_ms_posts.Thanks
Hi there,
The way the plug-in work is grab all the posts from the all blogs no matter what they are posted before the plug-in install then put them into the mysql view table and sort them base on the posted dates.
Are you using wordpress 3.0 multisite or wordpress MU?
Thanks
Hi summitlake,
Sorry to hear that but I’ve fixed that issue in my new version (1.2).
Thanks