Search Results for '\"wordpress\"'
-
Search Results
-
Using bbpress registration for my forum, can anyone–including people without any wordpress account–register?
I would assume so and hope so, but I saw that this bbpress-powered forum requires a wordpress account for registration.
Topic: Breadcrumb
Hello!
Help please, I would like to duplicate bread crumbs under forum.
How do I do this??
WordPress 5.1 with Woodmart theme.To make it so.
Thank you very much
Hi,
We’ve got a demo set-up running a site that uses both bbpress and memberpress. We’re pretty close to being able to move this to the production site, but in running through what a user/member would be experiencing, we noticed that logged-in users are able to view the forum (we have one forum, many topics) just fine. They/we can click on another user’s name that is linked to their bbpress profile — and we can edit another person’s profile details.
Memberpress told me to use a rule to restrict access, but I don’t see how to block it unless the Edit portion on a profile page is a specially named post? I’ve tried and don’t seem able to block it. They are unable to tell me what else to do.
bbPress version 2.5.14
wordpress version 5.1Any help in this matter would be so appreciative.
Topic: Is BBPress being maintained?
Hi. I recently installed BBPress and was surprised the latest version for installation was 2.5.14. I also get a notice that the plugin “has not been tested with your current version of WordPress.”
Is BBPress being maintained? What is the expected timing for 2.6?
Performance/speed is important to me, and last I looked into it 2.6 was supposed to be a big improvement.
Hi All,
I am facing an issue while importing bbpreess forum data to another wordpress bbpress forum.
I have checked that new wordprees setup Post ids are matching with the bbpress forum, topics and replies post ids. So it could lead in conflict.
Is there best way to migrate forum properly with new post ids for forum, topics and replies with proper relationship/linking of forums, topics and replies.
Looking for help Urgently !!
Note: I am using new bbpress Version 2.5.14 and old bbpress version is also 2.5.14
Thanks,
PankajWordpress 5.0.3
bbpress 2.5.14Some users are able to create topics and posts, and also reply to posts. One user in particular gets the “ERROR: Your topic (or reply, depending) cannot be created at this time.”
All plugs except the bbpress plugin and the bbpress tweak plugin were deactivated then I logged in under the user’s name. The problem remained.
The Comment Blacklist under Dashboard\Settings\Discussion is totally blank. No naughty words in there.
There are no “groups” as such. All users are veterans and members of this organization. No need for additional “groups”.
I created a dummy account under my wife’s username, email, and a password and that works fine. She can create topics and replies. Other users don’t have an issue.
I am not able to replicate this problem anywhere – only with the user DickB. (His user name was originally “Dick_Bartlett” but I got rid of the underscore thinking that might be a problem.)
I have reviewed as many bbpress articles as I could find on this issue.
I’ve run out of ideas, and there don’t appear to be any more answers to this problem that I’ve been able to find.
So I’m turning to you experts to figure out how to get this user on track.
Topic: Help with installation
Hi,
I am new with setting up a forum for wordpress.
I want to integrate BBPress with my website but i dont know if the theme supports it.Anyone who has time to set this up ?
Thanks
Peter
Topic: All Forums not showing
WordPress Version 4.9.9 bbPress version 2.5.14 Using theme Twenty-Sixteen https://applebranch.org/seminary I have a lot of forums – one for every class I offer in my online school. However on the main page where students access the current forum for their class – it only shows forums through the first forum beginning with R (listed alphabetically). This is a recent development. I have looked at the set ups and settings and cannot find a reason. Is there a limit to the number of forums? If not, how can I get them all to show? Thank you.
Hi,
I have created a custom notification for my site when a post is published, the code used to do this is :-
// this is to add a fake component to BuddyPress. A registered component is needed to add notifications function custom_filter_notifications_get_registered_components( $component_names = array() ) { // Force $component_names to be an array if ( ! is_array( $component_names ) ) { $component_names = array(); } // Add 'custom' component to registered components array array_push( $component_names, 'publishpost' ); // Return component's with 'custom' appended return $component_names; } add_filter( 'bp_notifications_get_registered_components', 'custom_filter_notifications_get_registered_components' ); // this hooks to post creation and saves the post id function bp_custom_add_notification( $post_id, $post ) { $post = get_post( $post_id ); $author_id = $post->post_author; $blogusers = get_users( array( 'role' => 'staff' ) ); // Array of WP_User objects. foreach ( $blogusers as $user ) { bp_notifications_add_notification( array( 'user_id' => $user->id, 'item_id' => $post_id, 'component_name' => 'publishpost', 'component_action' => 'publishpost_action', 'date_notified' => bp_core_current_time(), 'is_new' => 1, ) ); } } add_action( 'publish_post', 'bp_custom_add_notification', 99, 2 ); /** * Format the BuddyBar/Toolbar notifications * * @since bbPress (r5155) * * @package bbPress * * @param string $action The kind of notification being rendered * @param int $item_id The primary item id * @param int $secondary_item_id The secondary item id * @param int $total_items The total number of messaging-related notifications waiting for the user * @param string $format 'string' for BuddyBar-compatible notifications; 'array' for WP Toolbar */ function custom_format_buddypress_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) { // New custom notifications if ( 'publishpost_action' === $action ) { $post = get_post( $item_id ); $author_name = get_the_author_meta('display_name', $post->post_author); $custom_title = bp_core_get_user_displayname( $post->post_author ) . ' published a new post "' . get_the_title( $item_id ) . '"'; $custom_link = get_permalink( $post ); $custom_text = bp_core_get_user_displayname( $post->post_author ) . ' published a new post "' . get_the_title( $item_id ) . '"'; // WordPress Toolbar if ( 'string' === $format ) { $return = apply_filters( 'publishpost_filter', '<a href="' . esc_url( $custom_link ) . '" title="' . esc_attr( $custom_title ) . '">' . esc_html( $custom_text ) . '</a>', $custom_text, $custom_link ); // Deprecated BuddyBar } else { $return = apply_filters( 'publishpost_filter', array( 'text' => $custom_text, 'link' => $custom_link ), $custom_link, (int) $total_items, $custom_text, $custom_title ); } return $return; } if ( 'bbp_new_reply' === $action ) { $topic_id = bbp_get_reply_topic_id( $item_id ); $topic_title = bbp_get_topic_title( $topic_id ); $topic_link = wp_nonce_url( add_query_arg( array( 'action' => 'bbp_mark_read', 'topic_id' => $topic_id ), bbp_get_reply_url( $item_id ) ), 'bbp_mark_topic_' . $topic_id ); $title_attr = __( 'Topic Replies', 'bbpress' ); if ( (int) $total_items > 1 ) { $text = sprintf( __( 'You have %d new replies', 'bbpress' ), (int) $total_items ); $filter = 'bbp_multiple_new_subscription_notification'; } else { if ( !empty( $secondary_item_id ) ) { $text = sprintf( __( 'You have %d new reply to %2$s from %3$s', 'bbpress' ), (int) $total_items, $topic_title, bp_core_get_user_displayname( $secondary_item_id ) ); } else { $text = sprintf( __( 'You have %d new reply to %s', 'bbpress' ), (int) $total_items, $topic_title ); } $filter = 'bbp_single_new_subscription_notification'; } // WordPress Toolbar if ( 'string' === $format ) { $return = apply_filters( $filter, '<a href="' . esc_url( $topic_link ) . '" title="' . esc_attr( $title_attr ) . '">' . esc_html( $text ) . '</a>', (int) $total_items, $text, $topic_link ); // Deprecated BuddyBar } else { $return = apply_filters( $filter, array( 'text' => $text, 'link' => $topic_link ), $topic_link, (int) $total_items, $text, $topic_title ); } do_action( 'bbp_format_buddypress_notifications', $action, $item_id, $secondary_item_id, $total_items ); return $return; } } add_filter( 'bp_notifications_get_notifications_for_user', 'custom_format_buddypress_notifications', 1, 5 );How can i create the same for a new bbpress topic? i’m thinking i need to change this code section but not sure how
// this hooks to post creation and saves the post id function bp_custom_add_notification( $post_id, $post ) { $post = get_post( $post_id ); $author_id = $post->post_author; $blogusers = get_users( array( 'role' => 'staff' ) ); // Array of WP_User objects. foreach ( $blogusers as $user ) { bp_notifications_add_notification( array( 'user_id' => $user->id, 'item_id' => $post_id, 'component_name' => 'publishpost', 'component_action' => 'publishpost_action', 'date_notified' => bp_core_current_time(), 'is_new' => 1, ) ); } } add_action( 'publish_post', 'bp_custom_add_notification', 99, 2 );I am using woffice as the theme, bbpress version 2.5.14, buddypress version 4.1.0 and the latest version of wordpress
Thanks