Skip to:
Content
Pages
Categories
Search
Top
Bottom

How register the users

Published on May 12th, 2015 by xavierartot

Hello,
In my forum I found the widget login but where is the register one?
The people can’t create a topics now?
Thanks
BbPress 2.5.7 – WP 4.4.2

“New Reply”-Notification – Link to the Reply, not Topic

Published on May 12th, 2015 by Malle

Hi folks,

bbPress is amazing with Buddypress, but one thing is anoying me:

When i have new Replys or a Notification of a new Reply. The generated Link directs me to the front Page or the First Post of the Topic.

But the Notification is called “You have a new Reply from XY to Topic ABC”.
So i want to see the new Reply, not the first Entry of this Topic (bc. i created this Topic).

I arranged it like that:

Changed the following Code:
“bbpress/includes/extend/buddypress/notifications.php” / Line 49


$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 );

to


$topic_link  = wp_nonce_url( add_query_arg( array( 'action' => 'bbp_mark_read', 'topic_id' => $item_id ), bbp_get_reply_url( $item_id ) ), 'bbp_mark_topic_' . $item_id );

and
“bbpress/includes/extend/buddypress/notifications.php” / Line 113-120


	// Get some reply information
	$args = array(
		'user_id'          => $topic_author_id,
		'item_id'          => $topic_id,
		'component_name'   => bbp_get_component_name(),
		'component_action' => 'bbp_new_reply',
		'date_notified'    => get_post( $reply_id )->post_date,
	);

to


	// Get some reply information
	$args = array(
		'user_id'          => $topic_author_id,
		'item_id'          => $reply_id,
		'component_name'   => bbp_get_component_name(),
		'component_action' => 'bbp_new_reply',
		'date_notified'    => get_post( $reply_id )->post_date,
	);

So it´s Kind of a Core Hack.
Could it be impimented as an Option or via other Filter? I don´t know how to do it “right”.

Pls Help and Greetings

bbPress private groups Plugin could not be activated

Published on May 12th, 2015 by prajya

Hi,
Someone can help me ?

Plugin could not be activated because it triggered a fatal error.

Fatal error: Cannot redeclare custom_list_forums() (previously declared in /home/admin/web/mydomain.com/public_html/wp-content/plugins/bbp-private-forum-visibility/includes/functions.php:17) in /home/admin/web/mydomain.com/public_html/wp-content/plugins/bbp-private-groups/includes/forum-filters.php on line 282

Thank you vry much
Prajya

Notifications – Similar to Facebook

Published on May 12th, 2015 by nolimit966

Hi, it would be great if when a user logged in they had an icon with a number which had live notifications when clicked in the exact same way Facebook does. Is there ability to do this with a plugin which displays preview / snipped of the reply & the ability to navigate to it?

Thanks

Setting up forum community

Published on May 11th, 2015 by shaimart

Hi,

I am just setting up my forum and would like to ask for assistance.

1. How can I allow new users to sign up, without gaining access to the WP Admin or dashboard? I solely want them to have front end access.

2. How can I setup social registration/ login? For eg. Facebook/ Twitter logins. Still, with no access to the backend of WP or dashboard, solely front end.

3. I want all logins/ registrations to redirect to the forum.

Thanks in advance for your assistance.

Release: bbPress Advanced Statistics

Published on May 11th, 2015 by Jake Hall

Hi guys,

I recently released a plugin for bbPress+WordPress, which adds a brand new shortcode that displays various statistics for your forum, and also includes the bbPress Statistics as an on/off toggle.

For those trying to replicate a similar look and feel to say, phpBB or vBulletin, this will help!

In future versions, I plan on implementing an actual widget – however, due to the way I have written the plugin I get the feeling it would require a full rewrite to achieve that – so it may be a while off yet.

Anyway, if you’re interested, check it out here: https://wordpress.org/plugins/bbpress-improved-statistics-users-online/

Forums not populating recent posts

Published on May 11th, 2015 by bombdigiti

Hey all, might be a simple little issue, but I can’t seem to get it working.

The forum main page is populating the number of topics, post and freshness but once you click on the specific sub-forum title to view the page of all post it is taking us right to “create new topic” in forum.

Thoughts on why it’s doing this? Fixes?

Thanks.

Having moderate rules for a specific forum

Published on May 11th, 2015 by atsouf

Hello,

I have bbpress 2.5.7 on WordPress 4.2.2. (http://apofasismenoi.gr/forums/)

I have 10 forums. On 9 of them i want the members to post topics or replies freely.

On one of the forums i want when a member creates a topic or posts a reply not to be public. I want it to be on pending and only keymaster will be able to change the status to public.

I have seen the plugin bbPress Moderation though i am not sure it can cover my needs. But the issue is that it has more than 1 year to update and its compatable till 3.6.1

Any help is welcome,
atsouf

Bbpress giving errors

Published on May 10th, 2015 by fattbabanlakay

My bbpress is giving this error after activation in debug mode: Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in C:\xampp\htdocs\wordpress\wp-includes\functions.php on line 3560

Also I noticed that after activation, some ajax features on my site will no more work, for instance, if i visit the media page on the dashboard, it will load forever without giving any result.

I need urgent help please.

Thanks.

Specify Menue – Add “edit profile”

Published on May 10th, 2015 by Sebastian

Hi,

Is used the code snippet from the codex and it worked fine.

How could I modify the code to choose a specific menu?

E.g. primary oder secondary. Actually “Edit Profil” is shown in all my menues and I just want to have it on my Primary Menu.

// Filter wp_nav_menu() to add profile link
add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' );
function my_nav_menu_profile_link($menu) {
    if (!is_user_logged_in())
        return $menu;
    else
        $current_user = wp_get_current_user();
        $user=$current_user->user_login ;
        $profilelink = '<li><a href="/forums/users/' . $user . '/edit">Edit Profile</a></li>';
        $menu = $menu . $profilelink;
        return $menu;
 
}

Layout and functionality – Examples you can use

Thanks!

Skip to toolbar