can somebody help me with this issue.
My guy has been unavailable to help.
I change the url in settings to a different domain. Page gone login gone. have found some info about resetting with PHP .. LOST. Help.
can somebody help me with this issue.
My guy has been unavailable to help.
I change the url in settings to a different domain. Page gone login gone. have found some info about resetting with PHP .. LOST. Help.
Hi!
Not sure if I am the only one with this problem
running bbpress 2.3 and BP1.6.2 on wp3.5.1
every so often (1 in 10 to 1 in 20 ) new topics or replies ends up ‘pending’ not published
and I have to manually publish them..
what could be the reason? and how can it be prevented?
No moderation plugins etc are running.
thanks
I have a few questions that I was hoping one of the bbPress developers would be able to give me a quick hint about offhand.
I’m getting results that leave me completely puzzled, as I try to hook into or directly modify the `bbp_get_caps_for_role()` function in `/core/capabilities.php`.
The `bbp_get_caps_for_role` filter
My purpose is to try and return an array with true on all caps for any role, because I need to find out why only the keymaster gets to upload images.
My first attempt is just to use the `’bbp_get_caps_for_role’` filter provided by the function. This is where the mysterious stuff starts…
I can add the filter, and when I check the `$wp_filters` global afterwards, I can verify that the filter has been added correctly. However it doesn’t fire. When I check the `$wp_filters` array inside the `bbp_get_caps_for_role()` function, just before the hook is applied, my filter has vanished. So somewhere there must be a function removing my filter. But where, and why!?
Testing by returning the `$caps` array with all caps set to `true`
So giving up on the filter for now, I simply try to hardcode the all-true `$caps` array directly into the `bbp_get_caps_for_role()` function and returns this, regardless of role. What then happens is even weirder. – Now my user can not even post a reply in the forum.
How can setting all caps to true end up giving my user less rights in the forum?!
Thanks in advance guys!
For reference, here is the bottom part of my hacked `bbp_get_caps_for_role()` function:
`
…
‘assign_topic_tags’ => true,
);
break;
}
$caps = array(
// Keymasters only
//’keep_gate’ => true,
// Primary caps
‘spectate’ => true,
‘participate’ => true,
‘moderate’ => true,
‘throttle’ => true,
‘view_trash’ => true,
// Forum caps
‘publish_forums’ => true,
‘edit_forums’ => true,
‘edit_others_forums’ => true,
‘delete_forums’ => true,
‘delete_others_forums’ => true,
‘read_private_forums’ => true,
‘read_hidden_forums’ => true,
// Topic caps
‘publish_topics’ => true,
‘edit_topics’ => true,
‘edit_others_topics’ => true,
‘delete_topics’ => true,
‘delete_others_topics’ => true,
‘read_private_topics’ => true,
// Reply caps
‘publish_replies’ => true,
‘edit_replies’ => true,
‘edit_others_replies’ => true,
‘delete_replies’ => true,
‘delete_others_replies’ => true,
‘read_private_replies’ => true,
// Topic tag caps
‘manage_topic_tags’ => true,
‘edit_topic_tags’ => true,
‘delete_topic_tags’ => true,
‘assign_topic_tags’ => true
);
return $caps;
//return apply_filters( ‘bbp_get_caps_for_role’, $caps, $role );
}
`
I don’t know if this is a known issue. At least there’s nothing mysterious about it. So I was just hoping to hear what bbP core developers think of it.
Because WP doesn’t include img tags in the standard $allowedtags array, only users with the quite powerful “unfiltered_html” capability will not see their img tags stripped out after having so nicely inserted them in their forum post with the new media manager.
This can be fixed of course by adding the img tag to the $allowedtags array. Including the “class” attribute, because this is used to position and style the image.
But is there any plans to have this fix included within bbP? And if so, if not, I assume that allowing the class attribute of the img tag would also mean only allowing the specific class names that bbP/WP uses, so user’s can’t just insert any class name they’d fancy.
Hi,
Im looking for a way to make a topic or forum only accessible to one user plus admin.
Im happy to pay for work on this if someone is available?
I have tried various plugins but none seem to offer this.
I need something like the following:
Admin creates topic called “john private” and “paul private
Admin logs in and can see and post in “john private” along with “paul private”
John logs in and can see and post in “john private” he cannot see “paul private”
Paul logs in and can see and post his private area but cannot see or post in johns.
I will need a large amount of these private areas for customers like John and Paul.
How can this be done?
Thanks, i really appreciate the help.
Is there anyway to post video, sound, or picture/photos to comments? Anyone have any ideas on how to do this? Thanks in advance. =)
A huge thank you to the entire bbPress community!
I am excited to launch my frugal community today. This has been a bucket list item for a long time, and thanks to the hard work of everyone here it is now a reality.
Please feel free to take a look. Comments are always welcome and appreciated.
http://www.afrugalreality.com/
Best,
Ben
Hello, Is there a way to edit the bbpress registration email when a user first registers. I know in previous version you could do this by editing the functions.bb-users.php file, But what about the new version? I am using version 2.2.4. Any help is appreciated.
Thank you
I’m working at a WordPress site in which I want to use the bbPress plugin. Now, I want to create a link between the normal WordPress comment function and bbPress. I just want to do one thing. Under my standard WordPress blog entries, the users of my site can post comments. The comments are listed under the respective blog article. Next to each comments there the picture of the user that creates the comment. Now I want to create a link between the picture of the commentator and his bbPress profile page. When someone presses the picture of the commentator, there should be a forwarding to the bbPress profile page of the commentator. Observer of my blog can get a few informations about the commentator by that. Unfortunately I’m not able to create the link.
This is the code of my functions.php, that describes the comments setup of my normal WordPress commenting system:
And this is the bbPress php code which creates the user avatar link to the profile page:
Can somebody tell me the way how I have to modify the WordPress functions.php?
Even now, many thanks for your Help!
I’m trying to create a page that includes only recent topics which would only be available to a forum role of Participant and a visibility of Private.
Creating a new page and using the short code
Is there a way to create an additional forum template that lists recent topics? This would not replace the main forum list view, but would be an additional page.