Hello.
I installed bbpress for my support forum in a subfolder.
I get 404 for some feeds.
http://site.com/support/forums/reply/164/feed/ >>> google webmaster indexed some url like this and these are 404 error!
Please help to fix it.
Regards
Is there anyway to add image to the BBpress toolbar besides the “img” quicktag? Im afraid my members on my forum will not know how this works or there image wont have a link. Right now i have the GD bbPress Attachments plugin which can make a user add an attachment but the problem is when someone adds an attachment it gets added to my wordpress media which I do not want. Is there anyway to add an image to the visual side of the BBpress toobar?
Hi! Why thing like hour or minutes in language it’s as normall srtring not as plural? Can we change that in bbpress? It’s very uncomfortable..
There is more I would have to write like identifying spam for moderation.
And also knowing the difference between human spam vs robot spam and what suggestions I listed in the guide would help fight each one.
Hopefully though it helps you fight spam in bbPress.
https://codex.bbpress.org/getting-started/user-submitted-guides/dealing-with-spam/
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/user-topic-created.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/user-topic-created.php
bbPress will now use this template instead of the original
Then modify or overwrite woth your modified file
admin and keymaster are two seperate things
If you are an admin (or someone who is does this)
go to
Dashboard>users>all users and select your profile and edit
Near the bottom, you’ll see your bbpress lkevel, set this to keymaster
bbpress doesn’t auto subscribe to new topics
try
topic subscribe
and whilst you’re there this is useful too
Reply Subscribed
If you want to change it everywhere then put this in your functions file
//This function changes the text wherever it is quoted
function change_translate_text( $translated_text ) {
if ( $translated_text == ‘Forum’ ) {
$translated_text = ‘new text’;
}
return $translated_text;
}
add_filter( ‘gettext’, ‘change_translate_text’, 20 );
Functions files and child themes – explained !
Is there a way to redirect bbpress user profile to wordpress author page? Can anyone tell me some hooks that can be possibly put in the function.php?
Your help is highly appreciated.
Yeah!
@robkk
found the solution in one of your previous posts
No register or login buttons?
installed the plugin recommended and it worked!
Hello
As admin i m able to create new Topic from frontend and bckend both
but as a user, i m not seeing create new Topic button on Forum page and Create new Topic button is also not present on Topic page
ps: i used [bbp-topic-form] to show new Topic on another page , but i do not want to show Create New Topic on Main Menu rather then i want to show create new Topic on Forum menu :like
Topics Started
Replies Created
Favorites
Subscriptions
create new Topic or as show default that comes with bbpress
i m new in bbpress
i m using
latest version of wordpress
latest version of Buddypress
latest version of bbpress
can u please suggest any idea how to get resolve this problem
thanks
I tried gd-bbpress-attachments but I can’t restrict file types.
Participants can attach a js.file for example.
Anybody knows ho to restrict attachments to certain file types?
Best wishes.
Try some troubeshooting and also double check in settings > forums in the Topics and Replies Per Page section make sure to set 9 replies per page.
Troubleshooting
You can try this but I don’t know if this would affect the other links from loading or not.
.forum-archive #bbpress-forums {
display: none;
}
You guys might need to hire a developer to design this for you. I think it would require a bunch of if statements.
bbPress Conditional Tags
Try some troubleshooting , it could be a plugin issue.
Troubleshooting
Try some troubleshooting first
Troubleshooting
Also I guess see if you set up the two themes the same.
The ugly one is the default bbPress layout. Since I do not know how you go the other links below that I can suggest maybe hiding one of them with CSS.
I am still not able to understand it. First I dont know how to create a child theme and second I dont know how to do what you are suggesting. I am also facing some issues with buddy press. The buttons are not displaying properly.
Can you suggest any other good community plugin?
There is no plugin to just fix it. bbPress is inheriting a template from your theme that is causing this issue. Since all themes are different creating a plugin to fix them all would be really difficult.
To create a child theme you can read this: https://codex.wordpress.org/Child_Themes
If you need help with anything , please tell me exactly what you need help with or at least tell me what you understand.
And what buttons are not displaying properly?? This is probably CSS so I could do this for you easily.
Also since you are using a paid theme (Canvas) , you might want to consider contacting your theme author for help.
I cant just do it for you for free, you can contact me through email if you want me to do it for you.
Contact
Thank you robkk !
This was exactly what I was trying to find/figure out.
Now I am wondering what other BBPress and WP URLs there are that I would like to use.
use the topic form shortcode.
[bbp-topic-form]
Shortcodes
It would be supper nice to be able to put a general “Start a Discussion” button on various pages
Ive explained to users bunches of times how to do this kind of functionality. Search the forums and search “new topic button”
I dont think it is an issue with Login , maybe cache??
Try some troubleshooting first.
Troubleshooting
The “css” directory contains style sheets that work with the default markup. Copy any you want to modify into a directory named “css” in your theme’s root. eg. /wp-content/themes/%your-theme%/css/
https://codex.bbpress.org/theme-compatibility/