scribu
Forum Replies Created
-
Forum: Plugins
In reply to: [Posts 2 Posts] Alternative to 'p2p_candidate_title'?Just released version 1.6, which contains the ‘p2p_candidate_title’ filter.
Forum: Plugins
In reply to: [Posts 2 Posts] error Incorrect usage/placement of 'SQL_CALC_FOUND_ROWS'I can’t reproduce the error. Even if I set
'posts_per_page' => 1, The subquery doesn’t contain SQL_CALC_FOUND_ROWS.Go through the troubleshooting flowchart to make sure that it’s not caused by some other code.
Forum: Plugins
In reply to: [Posts 2 Posts] Fields for User ConnectionsYes, you can add per-connection metadata, although there’s currently no UI on the user management screen.
Forum: Plugins
In reply to: [Posts 2 Posts] Japanese language fileHello,
Since you already seem to know how to use github, you could just open a pull request: https://github.com/scribu/wp-posts-to-posts/
Forum: Plugins
In reply to: [Posts 2 Posts] cannot hide admin box with 'show' => 'from'It doesn’t work because that’s not the correct syntax.
Read the wiki page again: https://github.com/scribu/wp-posts-to-posts/wiki/Admin-box-display
Forum: Plugins
In reply to: [Posts 2 Posts] Admin hangs up in p2p_created_connection actionI’ve updated the FAQ to address this issue.
Forum: Plugins
In reply to: [Posts 2 Posts] error Incorrect usage/placement of 'SQL_CALC_FOUND_ROWS'Forum: Plugins
In reply to: [Posts 2 Posts] error Incorrect usage/placement of 'SQL_CALC_FOUND_ROWS'Yeah, I was under the impression that P2P took care of removing SQL_CALC_FOUND_ROWS from subqueries, but apparently not.
Opened a ticket: https://github.com/scribu/wp-posts-to-posts/issues/353
Forum: Plugins
In reply to: [Posts 2 Posts] Getting the post_author from p2p_get_connection( $p2p_id )?Yes, use
get_post(), which caches the result:$post = get_post( $connection->p2p_to ); $TweetAuthorID = $post->post_author; $PostTitle = get_the_title( $post ); ...Forum: Plugins
In reply to: [Posts 2 Posts] How to show only part of the posts that connected to item?The posts_per_page parameter does not seem to affect the connected items.
That’s because you also set
'nopaging' => true.Forum: Plugins
In reply to: [Front-end Editor] Thickbox breaks with jQuery >1.9.x live() functionFor the record, FEE doesn’t ship with a custom version of Thickbox; it uses the one that WP has.
Ideally, it would switch to the new media library from WP 3.5.
Forum: Plugins
In reply to: [Press This Reloaded] REQ: Option to disable media from page featureShould be fixed in the development version (1.1.1-alpha).
Forum: Plugins
In reply to: [Press This Reloaded] REQ: Option to disable media from page featureThat’s a valid complaint.
Forum: Plugins
In reply to: [Front-end Editor] Editable Content Groups?Nope; the page content is a single editable element. You can’t split it up into multiple editable elements.
Forum: Plugins
In reply to: [Posts 2 Posts] Error in Fresh Install when adding COnnectionsShould be fixed in the latest Development Version.
Thanks for reporting.