then check for a plugin or theme conflict
Check other plugins
Check that no other plugins are affecting this.
Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.
Check themes
If plugins are not the cause, the it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.
ok, just tested and this code seems to work
function add_custom_role( $bbp_roles ) {
$bbp_roles['my_custom_role1'] = array(
'name' => 'name 1',
'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants
);
$bbp_roles['my_custom_role2'] = array(
'name' => 'name 2',
'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as participants
);
$bbp_roles['my_custom_role3'] = array(
'name' => 'name 3',
'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() ) // the same capabilities as keymaster
);
return $bbp_roles;
}
add_filter( 'bbp_get_dynamic_roles', 'add_custom_role', 1 );
So this adds 3 roles, you/your experts can duplicate the code and add more or remove unnecessary.
Basically you’ll just need to
1. tell the what to put as the names – currently the new roles are name 1, Name2 and name 3 (where it says ‘name’ => ‘name 1’ , so they’ll just overwrite that with what you want.
2. for each what capability. You’ll see the first two have the code bbp_get_participant_role() so that sets them to participant and the last sets to keymaster using bbp_get_keymaster_role() . You can guess that you just change the words for other roles such as spectator, or moderator.
They need to add this to your theme’s functions file.
please come back if any of this is not clear
I don’t like giving no answers so in between I have a little look, and found an answer from someone else on your second question ie adding roles with existing capabilities.
I just need to test it, and I’ll be back.
in the meantime if I said “add this code to your functions file” would you know what I mean?
I think you have got some display issues
under IE, Firefox and Chrome (haven’t tested others) at 100% the submit buttons disappears. At 75% you see it. Do a zoom in and out to see the effect.
Fix that and the checkbox will probably appear !
Do you want :
just the latest reply (or topic is no replies)
The title or all the body?
Do you want it in the body or in a sidebar?
how can i show letest thred (only last one) on my home page template. http://codex.bbpress.org/shortcodes/ i tried all this short cods in this page but nothing worked.
@surangaudimedia
have you :
Check other plugins
Check that no other plugins are affecting this.
Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.
Check themes
If plugins are not the cause, the it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.
come back once you done those of you still have a problem
Hi..
please help me to get bbpress latest post.’[bbp-single-view]‘ this shortcode are not working. how I get bbpress latest post to my home page.
The submit button is on the lower right. I need to change the color so that it stands out more. But yep, I’m able to fill out a new topic with content and hit submit.
Example:
http://www.contentsmartslab.com/membersite/forums/topic/testing/
I just can’t subscribe to the thread. The checkbox still isn’t working.
the url reads
http://domain.com/whatever-your-shortcode-page-is-called/page/2/
So presume your page is called “topics”
The code works – I’ve just retested it on twentyten site and pagination and subsequent pages were fine, so suggest you try
Check other plugins
Check that no other plugins are affecting this.
Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.
Check themes
If plugins are not the cause, the it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.
and then come back if you need further help.
Just check that it is not plugin related first
Check other plugins
Check that no other plugins are affecting this.
Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.
Then to confirm it is a theme problem..
Check themes
If plugins are not the cause, the it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.
Come back and let us know if you fixed, or for more help
If it works for others i must be making some mistake. Tried with default theme same problem. It is some test development with many, many WP and Bbpress plugins. Could be that some of them is blocking.
I’m setting up/testing bbPress on this URL:
http://www.contentsmartslab.com/membersite/forums/forum/content-smarts/
I can’t seem to check the box that says “notify me of follow-up replies via email.” I have the subscribe option properly setup on the back-end. I’m wondering if I messed up the input CSS somewhere here, or something else. Any thoughts?
@stagger-lee I just tested the code from https://codex.bbpress.org/enable-visual-editor/ and it worked fine.
You could also try the following as a plugin, it has options to enable the full editor, though it sounds like you don’t want this so don’t enable it.
https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/
I am using WAMP to make a test bed for my site and I am trying to install bbPress on my locally hosted site.
However, when I install the plugin, it installs fine, but the forum pages give a 404…
How do I go about doing this?
ok, so if you’re not miles down the redesign, I’d copy across your current site and then mod from there
see
https://codex.bbpress.org/creating-a-test-site/
for a lot of detail on this.
Sorry for my late reply.
@robin-w
I have read the site you gave me but I can’t find a solution for my problem.
@lynqoid
I have deleted every JavaScript and tested it. Nothing!
I deleted the code of the function.php. Nothing!
I deactivated every plug-in. Nothing!
…and the CSS can’t be the fault because the toolbar is not disabled. It’s not there.
I don’t know what the problem could be. I hope someone can help me.
I don’t get to a forum on any of those links, presume you are still testing, so can’t answer the 401 message.
: http://propertycrowdz.com/forums/forum/rentals/ is the way bbPress shows the url.
There is some logic behind it, but it does annoy some people
The general index comes up as mysite.com/forums
but an individual forum is a forum called rentals hence forum/rentals that belongs to the forums index, hence forums/forum/rentals.
You can turn this off – Dashboard>settings>forums go to forum root slug and uncheck the forum prefix.
Below that you can change the names, so for instance you can have “support” instead of forums if you want.
Come back if you still got a 401 error, and I’ll take a look.
Check other plugins
Check that no other plugins are affecting this.
Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.
Check themes
If plugins are not the cause, the it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.
Once you have done this, come back if its still a problem.
Check other plugins
Check that no other plugins are affecting this.
Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.
Check themes
If plugins are not the cause, the it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.
Now it is the same with SMF converter. I know it is not something for this topic, but do i have so bad luck. I have feelings that those converter scripts are not tested at all.
Converting replies (8100 – 8199)
About a month ago I updated to 2.5.3 and at the same time I updated another plugin that integrates with bbPress. A few weeks later I’m having some issues with the other plugin and I’m trying to nail down which plugin is causing the problem but I can’t find where to download older version of bbPress so I can roll back and see if the problem is still there. Any idea where I can download previous release versions? The download page only has the latest and some pre 2.x versions.
Nice test there! You’re right – on Twenty Fourteen, it works as expected! Must be something in my theme! Thanks for this! Should have done this before i posted!
aah. forget the title “support”. this is the main title. you will find it everywhere! even on forum homepage:
http://www.dashcamtest.de/support/
the topic title is missing!
to show you the difference: i am talkin about single replies NOT topics. it is the same with your reply as single page:
Reply To: no title in content-single-reply.php
as you can see there is a nice title with prefix “Reply to:…”
and THIS is what i miss in my page. do you understand now? 🙂