u_Oi (@arutam)

Forum Replies Created

Viewing 19 replies - 26 through 44 (of 44 total)

  • u_Oi
    Participant

    @arutam

    Hi,

    Maybe this plugin can help you!

    bbPress Messages

    Regards,

    In reply to: Ayuda del Plugins

    u_Oi
    Participant

    @arutam

    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:

    bbPress in Your Language

    Also, you can visit this page about bbPress in Spanish

    Suerte!


    u_Oi
    Participant

    @arutam

    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,


    u_Oi
    Participant

    @arutam

    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 );

    u_Oi
    Participant

    @arutam

    I tested the site and runs fast…


    u_Oi
    Participant

    @arutam

    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.


    u_Oi
    Participant

    @arutam

    It looks you are using a plugin to show that information. Apparently, It won’t be a bbPress problem…

    You can fix it with css.


    u_Oi
    Participant

    @arutam

    Try 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-messages

    u_Oi
    Participant

    @arutam

    WAMP 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-messages

    u_Oi
    Participant

    @arutam

    bbPress 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: Scalability

    u_Oi
    Participant

    @arutam

    When 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,


    u_Oi
    Participant

    @arutam

    Awesome! Thank You @Robkk, solved…

    You should visit my forum, looks pretty cool!


    u_Oi
    Participant

    @arutam

    @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,


    u_Oi
    Participant

    @arutam

    Thanks @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.


    u_Oi
    Participant

    @arutam

    @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' );

    u_Oi
    Participant

    @arutam

    Thanks @Robkk I solved it whit Theme Developer, the problem was with the theme…

    Regards,


    u_Oi
    Participant

    @arutam

    Avatars and username are clickable by default. Maybe you are getting an conflict with some plugins or with the theme.


    u_Oi
    Participant

    @arutam

    Hi,

    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,


    u_Oi
    Participant

    @arutam

    Hi 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?

Viewing 19 replies - 26 through 44 (of 44 total)