I’ve noticed for the last month or so now that when I update a forum in a group it no longer updaes the last active group in the list of groups like it used to.
Also the activity does not update in the groups with new forum updates.
Just thought I should post this here in case it’s an issue because I liked the way it worked before.
Hello,
I hoping to change the name of some of the fields within the Create New Topic Form.
E.G I’d like to change the ‘Topic Title’ field to ‘Your Question’
Any help will be very gratefully received.
Thanks,
P.
I installed bbpress with wordpres on my localhost for testing purposes. I created a new account to to test posting status for the user.
But each time i want to post on the forum i get
“ERROR: Are you sure you wanted to do that?”
some should pls help out i need to get it done sonnest
Thanks
that participants can see these in writing posts.
You may use these HTML tags and attributes:
<!a href=”” title=”” rel=”” target=””> <!blockquote cite=””> ` <!pre> <!em> <!strong> <!del datetime=””>
When logged in as administrator, you can change the post and his own, while logged in as a normal participant can not change his statement, it is possible to do so participants can edit their posts?
Hi,
How can I move a topic from one forum to another programmatically? I’m hoping to send a post variable with the new forum ID, and then update the topic like so:
// Update the Status Meta After Changes are Posted
if ( isset( $_POST['bbps_forum_option'] ) ) {
$new_forum = $_POST['bbps_forum_option'];
bbp_update_topic( $this->topic_id, $new_forum );
} // if()
Thanks!
Hi,
I’m trying to retrieve a simple list of all forums on a site, for which I need to have a loop. I’m trying to create one from within a class in my plugin using this function:
public function forum_list(){
$forums = array();
if ( bbp_has_forums() {
while ( bbp_forums() ) {
bbp_the_forum();
$forum_id = bbp_get_forum_id();
$forum_name = bbp_get_forum_title();
$data = array( 'ID' => $forum_id, 'name' => $forum_name );
$forums[] = $data;
//} // while()
} // if()
return $forums;
} // get_forum_list()
Which is called inside the construcor like so:
$this->forums = $this->forum_list();
This is telling me there is no object (Call to a member function get() on a non-object). The function works perfectly well outside the class, but inside it fails. What am I missing?
Hi there,
I use the Genesis framework. In the Genesis theme there is a CSS part that sets the global margins.
.entry {
margin-bottom: 40px;
padding: 50px 60px;
}
I managed to change a lot of the CSS by learning trial and error. I managed to change lot of the CSS of bbPress, but I don’t now how to change specific global things only affecting the bbPress forum.
How can I change only the margings and the font type of the forum, without affecting the rest of the site (Genesis CSS).
Your help is highly appreciated 🙂
New on bbPress, we’re close to 2015, i want to install the one and only best social Facebook login option, so visitors can become users simply by signing-up with the Facebook account. This might mean also that if one day I remove this plugin, everything is kept inside WordPress/Database…, no ?
Here is what I’ve found so far, order in downloads.
Thank you for helping me choose.
Waiting for your advice 🙂
https://wordpress.org/plugins/loginradius-for-wordpress
Last Updated: 2014-9-8
Downloads: 228,743
3.5*
https://wordpress.org/extend/plugins/wordpress-social-login/
Last Updated: 2014-2-16
Downloads: 126,114
4*
https://wordpress.org/plugins/super-socializer/
Last Updated: 2014-9-5
Downloads: 52,593
5*
https://wordpress.org/extend/plugins/socialauth-wp/
Last Updated: 2013-5-28
Downloads: 4,927
4*
The Forum Attributes metabox caps the parent dropdown at 20 items. This means that if you have more than 20 items (categories and forums), they start getting bumped off the list. I’ve looked for a filter of some sort, but can’t find a way to either force it to show all or, even better, only show categories without modifying core files. Thoughts?