How to output topics and replies in bbpress as table?
How to output topics and replies in bbpress as table?
How to output topics and replies in bbpress as table?
BBPress Search results in WordPress search
This is a bandaid, not a fix. But it seems there is a bug within WP_Query, so I had to modify the query right before it was actually run in order for the post_type parameter to not be ignored. 1) I changed get_posts() to a WP_Query 2) I added this to my functions.php file: function … Read more
wp_delete_post() not working with BBpress replies
I am working on a similar functionality. I want BuddyPress users to upload image, make a custom post and set the uploaded image as the post’s featured image. It is possible to do this, do not see why not. Maybe somebody will be able to post a complete out-of-box solution for you. In the meantime, … Read more
Using WordPress as an API [closed]
Use just a shortcode from another page
Disable email confirmation new register bbPress [closed]
OK I got a quick Solution. I enable the plugin BBpress Moderation and change the following code in /wp-content/plugins/bbpressmoderation/bbpressmoderation.php FROM: /** * Before inserting a new topic/reply mark * this as ‘pending’ depending on settings * * @param array $data – new topic/reply data */ function pre_insert($data) { global $wpdb; if (@$data[‘post_status’]==’spam’) return $data; // … Read more
Turns out every lead I was following was a red herring. I had another function hooked into wp_insert_post that was redirecting you back to the Video single page instead of sending you to the Thread single page if you posted your reply FROM the Video single page. It turns out that redirect was hitting and … Read more