scribu
Forum Replies Created
-
Forum: Plugins
In reply to: [Posts 2 Posts] Edit Metabox and admin column labels/titlesIn the development version (1.5-alpha), you can use the ‘column_title’ key:
https://github.com/scribu/wp-posts-to-posts/wiki/Admin-column-display
And similarly for the metaboxes:
https://github.com/scribu/wp-posts-to-posts/wiki/Admin-box-display
Forum: Plugins
In reply to: [WP-UserOnline] Full path disclosure?If you don’t have error reporting enabled on your live site (which you shouldn’t), there won’t be any FPD “vulnerabilities”.
Fixed those too: https://github.com/scribu/wp-query-multiple-taxonomies/commit/99e150961ecffb9999d888626dbdf19486f31290
Thanks for reporting.
Forum: Plugins
In reply to: [Posts 2 Posts] Donate to Scribu!Hello, thanks for the interest.
There’s a Donate button here: http://scribu.net/wordpress/posts-to-posts/
Forum: Plugins
In reply to: [WP-UserOnline] Problem with IP appearenceForum: Plugins
In reply to: [WP-UserOnline] Problem with IP appearenceThe problem is that gethostbyaddr() doesn’t work with IPv6 addresses.
In the development version it’s not used anymore.
Forum: Plugins
In reply to: [WP-PageNavi] Add HTML 5 rel<link rel="prev">and<link rel="next">markup are outside the scope of WP Pagenavi; it only handles generating the clickable pagination links.If you want to see this implemented in WordPress directly, follow this ticket:
Forum: Plugins
In reply to: [Posts 2 Posts] missing all connectionsYour p2p_register_connection_type() code also looks fine.
Could you run through http://scribu.net/wordpress/wordpress-plugin-troubleshooting-flowchart.html ?
Forum: Plugins
In reply to: [Posts 2 Posts] missing all connectionsWhat does WP Admin -> Tools -> Connection Types look like?
Did you check the wp_p2p table? Is the p2p_type column empty?
Forum: Plugins
In reply to: [Posts 2 Posts] missing all connectionsSo, the previous version of P2P was 1.4.2, correct?
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] All existing connection gone?@coneff: Please start a new thread, since this one was resolved.
That’s also why I forgot to reply to @reneelung.
Forum: Plugins
In reply to: [Admin Bar Login] compatibility with other plugins an issue?Do you mean you don’t see the admin bar at all when you’re logged out or what?
Also, this might help: http://scribu.net/wordpress/wordpress-plugin-troubleshooting-flowchart.html
Forum: Plugins
In reply to: [Posts 2 Posts] 'create' label not working in Posts 2 Posts 1.4.3Should be fixed in the development version (1.5-alpha).
You can make it even more robust, like so:
if ( !is_admin() ) { add_filter('posts_where', 'add_tla_to_archive', 10, 2); } function add_tla_to_archive($where, $wp_query){ global $wpdb; if ( $wp_query->is_archive() && !$wp_query->is_tax() ) { $where = str_replace("$wpdb->posts.post_type = 'post'", "$wpdb->posts.post_type IN ('".POST_TYPE_NEWS."', '".POST_TYPE_TLA."')", $where); } return $where; }This ensures that you don’t stomp unrelated WP_Query instances.