Or, if it is not possible, I’d like to know if there is a way for users to be re-directed to the “Edit” option from bbpress instead of going to the WordPress text editor.
Hello,
I am using skematiktheme.com wordpress theme, which is also styled for buddypress. I also have the lastest version of buddypress, bbpress, and wordpress installed.
Not sure if I should be asking this in the buddypress forum or not, because most of the changes are related to bbpress forums which are integrated with buddypress.
I want to change the font size. In general I just need to change the font size for the text in the body of posts, but it would be good if I could bump everything up by 4px. How do I change that?
Can someone help me by explaining it in simple step-by-step language?
For example: go here, then type this code here, and then change this, etc….
Thanks,
Ben
There is literally nothing in bbPress 2.2.3 that wasn’t also in 2.2.2 that could cause new 404 issues.
have web http://www.ermito.eu with bbpress 2.2.3
upgrade wordpress to 3.5
and start problem – forum’s page is empty
I check slugs is ok, permalinks also
pls help
I have some problem my forum wanisch –
http://www.ermito.eu/spolem
wordpress 3.5 buddypress 1.6.2 and bbpress 2.2.3 theme salutation
Pls helllp is live web with forum work well
I’ve also tried re-saving the permalinks (it’s currently on the to “Post name” option), but the problem persists.
Is there something I should be doing after updating bbPress and BuddyPress?
well, i rolled back the other plugin and everything resolved itself. it was buggy. disregard! sorry about that.
At this point I’m thinking my question has either been answered so many times people can’t be bothered to answer it anymore, even though I can’t find an answer to my question anywhere in support, or it is in fact impossible for anyone other than the site owner to post new topics or comments using bbPress which makes me wonder how it can be so popular đŸ˜‰
Come on now someone – anyone – how does Joe Blow visiting my site for the first time login to contribute to the forum. Surely it’s not that difficult.
oops… forgot to chick for notification…
i am using another plugin (codepress admin columns) that calls do_action(‘load-edit.php’) to load all the plugins to get some info – namely custom columns. since and update to both – which, ironically both updated today – i get this error:
Fatal error: Call to undefined method stdClass::add_help_tab() in /home/content/…/wp-content/plugins/bbpress/includes/admin/forums.php on line 118
And if I get past that error, it’s the same thing for admin/topics.php and admin/replies.php.
What I have traced it to is this:
private function bail() {
if ( !isset( get_current_screen()->post_type ) || ( $this->post_type != get_current_screen()->post_type ) )
return true;
return false;
}
For some reason bail() is not bailing. I – the user – am on options-general.php?page=codepress-admin-columns, and yet bail() thinks the current screen’s post type is ‘forum’ (or topic or reply).
I’m thinking this is a naming convention problem? Why else would get_current_screen return as a ‘forum’ post_type when I’m no where near the forum – I’m just loading it to read some data.
Thanks for any info.
Managed to make it work using this 2 functions:
function remove_bbpress_forum_freshness_date() {
return '';
}
add_filter('bbp_get_forum_freshness_link', 'remove_bbpress_forum_freshness_date');
function remove_bbpress_topic_freshness_date() {
return '';
}
add_filter('bbp_get_topic_freshness_link', 'remove_bbpress_topic_freshness_date');
But now i’m thinking to do something else. Instead of removing the date i want to rename it to something like “View Post”. The freshness date already links to the last post by default so i just want to rename it.
Do you know how can i do this?
Can you get more specific with your CSS? By that, I mean just targeting the date instead of the whole freshness block. For example, I see on my bbPress installation that the date in the forum freshness is in a child div of li.bbp-forum-freshness, which in CSS would be div.forums-topic-datetime.
If you are more comfortable with PHP and WordPress development the forum and topic freshness links do have filters:
bbp_get_forum_freshness_link
bbp_get_topic_freshness_link
Both filters pass the link html and the forum/topic id to your callback function. You could then hook to these filters, and simply have your filter callback return an empty string.
I’m also getting ‘404 Not Found’ errors for all my forum pages
http://www.citymoose.com/showcase/websites/ridbcandme/ (newadmin | newadmin)
Strangely enough, it also breaks some of the login verification plugins I have, such as Unconfirmed and Buddypress Pending Activations (“Warning: Missing argument 2 for wpdb::prepare(), called in /home/citymoos/public_html/showcase/websites/ridbcandme/wp-content/plugins/buddypress-pending-activations/bp-pending-activations.php on line 18 and defined in /home/citymoos/public_html/showcase/websites/ridbcandme/wp-includes/wp-db.php on line 990”).
I don’t know if these errors are coming from the new BuddyPress 1.6.2, bbPress 2.2.3, or the new WordPress 3.5, which I had to update all at the same time today.
There is a plugin that addresses the first issue.
https://wordpress.org/extend/plugins/bbpress-private-replies/
Not sure of an easy way to restrict posting a thread without a few chunks of custom code.
That doesn’t work for me.
Still, all registered users have access to private forums.
How can I configure the roles and capabilities when using bbPress 2.2.x???
Please guys, there has to be a simple way to do this!
My site is: http://mycarquest.com
It has now started working correctly without any changes from me
this reminds me of another problem I am having where changes to my posts do not appear for sometime unless I open the post in another web browser or another computer
I think this problem may have started with a bbPress update a couple of weeks ago
has anyone else had a problem like this?
If you create the user, it doesn’t assign them a role right away. They’ll get role mapped once they login to the site, or once you assign them a role.
Hi everyone,
I want to remove the last post date from my bbpress forum and topic pages:
I want only this to show up:
Freshness
[AVATAR IMAGE] Username
Basically i want to get rid of the date. I tried using CSS with this code:
li.bbp-forum-freshness a,
li.bbp-topic-freshness a{
display: none;
}
But it hides both the date and the username.
So, how can i hide only the date and leave the username?
Please help.
You’ll want to fully update to bbPress 1.1/1.2 first. Make sure your forums work after having done so. As long as the 0.9 to 1.1 migration was successful, moving to 2.x should be exactly as described above.
The data schema changed from 0.9 to 1.1, and the converter in 2.0 is not for 0.9.
When creating new user, bbPress role is not added. I don’t have any roles plugins or anything like that. I create new Subscriber user, and it doesn’t get bbPress role. I am using bbPress 2.2.3. Is there something needed to make this work, or should it work automatically?
EDIT: OK, there is a setting to allow this, and it is disabled by default for some reason.
EDIT 2: And no luck, even with this option ON, roles are still not assigned to new users.
It’s not always necessary, but everybody’s plugin combinations are different.
A link to your site, and any additional information you can give allows us to be much more helpful than the “HALP! IT BROKE!” reply. đŸ™‚
Hey! First time around here, and I’m a total newbie to bbpress. Glad you see you all!
I have a slight problem with my bbpress installation. Users from the forums see an “Edit this” link at the top of the topic and when they use it they can edit the topic in the WordPress post editor.
Is there a way to remove that link?
Thanks!
i’m using this plugin for bbpress logins w facebook twitter google etc, seems to work fine
https://wordpress.org/extend/plugins/wordpress-social-login/
sam