Forum Replies Created
-
In reply to: bbpress private messageIn reply to: Ayuda del Plugins
Hi,
1.- What you mean with overlap? Do you want to put together both fields? Debates are topics, and Publications are topics and replies.
2.- You can translate bbPress using pod files:
Also, you can visit this page about bbPress in Spanish
Suerte!
In reply to: Changing name of "Key Master"Thanks for the answer @benklocek
I am still looking for the right code, I will post here once I got it 😉
I was thinking what could be the best way…
1.-Create a custom role and then use the name of role to translate it. (I am doing this.)
2.-Give to spectator role the participant´s capabilities and then translate it.I need two participant roles, with differents name. Just to make more fun the forum style. Just like the ticket about “Add CSS class for user roles in topics and replies”.
Regards,
In reply to: Changing name of "Key Master"Thanks for the code @benklocek
I created a custom role with this code:
//Custom Role Admin function add_custom_role( $bbp_roles ) { $bbp_roles['my_custom_role1'] = array( 'name' => 'Admin', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) // the same capabilities as admin ); return $bbp_roles; } add_filter( 'bbp_get_dynamic_roles', 'add_custom_role', 1 );
and I can’t change the role name with @robkk code. But I did with your code. So I wonder what should I change to apply your code for all other roles, participant, moderator?
Thanks!
I tried couple ways but without success. Ex:
function my_custom_roles( $role, $user_id ) { if( $role == 'Participant' ) return 'Participante'; return $role; } add_filter( 'bbp_get_user_display_role', 'my_custom_roles', 10, 2 );
In reply to: authors BBpress ignore an big problem (SLOW)I tested the site and runs fast…
In reply to: Any good free bbpress themes ?An easy way to find bbpress themes is looking for wordpress themes with their own bbpress template (theme).
To difficult find just a bbpress theme.
You can also use a WordPress default theme and customize your bbpress through child themes or a custom css plugin.
In reply to: how center text below avatarIt looks you are using a plugin to show that information. Apparently, It won’t be a bbPress problem…
You can fix it with css.
In reply to: Full width forum bbpress.phpTry this code. Put it on the function.php
/* Hide SideBar in bbPress Profiles and Topics*/ function disable_all_widgets( $sidebars_widgets ) { if ( function_exists('is_bbpress') ) { if (is_bbpress()) { $sidebars_widgets = array(false); remove_all_actions('bp_register_widgets'); unregister_sidebar( 'bp_core_widgets' ); } } return $sidebars_widgets; } add_filter('sidebars_widgets', 'disable_all_widgets', 1, 1);
You don’t say if You want the full-width to all pages or only to topics, forums, or profiles.
Regards,
In reply to: bbp-messagesWAMP always give me problems…thats why I hate it! Anyway, I suggest you upload the site to your server/hosting and then install bbPress Messages.
Take it easy, I use bbPress Message and works fine. You should upload the website because the developer can’t help you with a site in local host.
Regards,
In reply to: bbp-messagesbbPress Messages works fine… maybe there is something wrong with WAMP.
Try to buy the pro version to get faster support and better features! bbPress Messages Pro
Regards,
In reply to: ScalabilityWhen you said about “optimized”, what you mean? For example, how many plugins do you have installed?
Maybe you must move to a better server.
Regards,
In reply to: Show status label for bbPress Topics with No RepliesAwesome! Thank You @Robkk, solved…
You should visit my forum, looks pretty cool!
In reply to: Show status label for bbPress Topics with No Replies@Robkk thanks, actually It works!
But I realized that if a topic is marked as closed without replies, the code you posted replaced the CLOSED label.
Is there a way to avoid label no-reply replace the closed label?
I mean, how i can make closed label the priority?
Regards,
In reply to: Show status label for bbPress Topics with No RepliesThanks @Casiepa
But I don’t want count the replies, I just wanna add a Label to Topics with 0 replies, and hide it if somebody reply the topic.
I found the info here:
24. Show status labels for bbPress Topics
Any other suggestion?
I think the label (no replies) should be on the documentation by default.
In reply to: Center and Space Between Paragraphs@Robkk sorry for the late answer…
I am back with the project… I realized what you said, the html is available only for admin; but with your code solved everything!
Thanks!
In case anyone need… I made Visual Editor visible in bbPress with this code:
/*Editor Visual bbPress*/ function bbp_enable_visual_editor( $args = array() ) { $args['tinymce'] = true; return $args; } add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
In reply to: Forum no load the entire “Post Area” – Broken ThemeThanks @Robkk I solved it whit Theme Developer, the problem was with the theme…
Regards,
In reply to: How to make usernames in comments clickable?Avatars and username are clickable by default. Maybe you are getting an conflict with some plugins or with the theme.
In reply to: Forum no load the entire “Post Area” – Broken ThemeHi,
I am pretty sure that is a theme error. The wp bug show this:
Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /home/public_html/fakedomain.com/wp-includes/functions.php on line 3622
Do you have any idea what is it?
I contacted the author, but he doesnt know how to solve yet.
Regards,
In reply to: Center and Space Between ParagraphsHi Robkk.
Thanks for the answer.
I read about to integrate TinyMCE, but I just need the both things (center and space). Do you know if it posible add them to the editor?