Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 1,526 through 1,550 (of 3,784 total)
  • @robkk

    Moderator

    It probably got fixed in a new WordPress update. This happens sometimes.

    @robkk

    Moderator

    IF you are talking about this kind of profile information.

    Forum Role: Participant
    Topics Started: 4
    Replies Created: 11

    you can edit/remove it by copying the template user-profile.php

    @robkk

    Moderator

    YOu are looking for a PowerPoint presentation, that lists how the forum index could have a hierarchy layout like other forum solutions??

    @robkk

    Moderator

    Just regular replies or spam posts??

    In reply to: Change role title

    @robkk

    Moderator

    It is listed how to do it here.

    Layout and functionality – Examples you can use

    In reply to: Replies not displayed

    @robkk

    Moderator

    Try some troubleshooting, see if this only happens in a certain theme that you may have placed code snippets, cache needs to be cleared, or that a plugin is causing an issue.

    Troubleshooting

    @robkk

    Moderator

    Sorry for the super duper late reply, your post was marked as spam and had to be approved by a moderator.

    You can run PHP in CSS unless you put your styles in a PHP function and added the code to the header using the wp_head hook.

    https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head

    @robkk

    Moderator

    Sorry for the super duper extremely late reply to your post, it was marked as spam and had to be approved by a moderator.

    Thanks for contributing some code to help other users, I will add this to that codex article later today.

    In reply to: bbPress specific CSS

    @robkk

    Moderator

    Sorry for the really really late reply but your post was marked as spam and has to be approved by a moderator.

    Thanks for the suggestions. I had thoughts of something similar too. I know having a transparent background will really help for sites with dark backgrounds easier.

    @robkk

    Moderator

    Sorry for the late reply to your post, it was marked as spam and had to be approved by a moderator.

    I do not have a list of great themes to choose from but bbPress can work with any WordPress theme you install.

    I explain it better here.

    Installing Themes

    In reply to: Create a theme

    @robkk

    Moderator

    You create any old regular WordPress theme.

    This WordPress codex guide will get you started into theme development.

    https://codex.wordpress.org/Theme_Development

    @robkk

    Moderator

    Sorry for the late reply your post was marked as spam and was awaiting moderator approval.

    This is very theme specific, but you may need knowledge of editing theme templates but definable some CSS knowledge. I suggest you contact your theme author for better help for just creating a right sided sidebar.

    @robkk

    Moderator

    Sorry for the late reply your post was marked as spam and was awaiting approval.

    bbPress themes are basically just WordPress themes, you can use any WordPress theme and theme compatibility in the bbPress plugin will do the rest. You may need to edit some files though, because some themes may be tricky to work with.

    I explain it better here.

    Installing Themes

    In reply to: want to help others

    @robkk

    Moderator

    Sorry your reply was marked as spam and was awaiting review.

    If you still are interested in contributing you can easily help out other users in the forums.

    If you are a skilled PHP developer, you can start getting your feet wet in the bbPress trac if you want and help out the core developers and core plugin development.

    If you are a skilled writer, I can grant you permission of an editor, but I have to see at least 1 or 2 guides written in Google Docs before granting you that role for security reasons. I can give you suggestions on guides to write if you want, or you can just email me some ideas for me to write to.

    Participate & Contribute

    @robkk

    Moderator

    Sorry for the late reply, just noticed your reply was marked as spam and was pending review for some reason.

    The file you need to edit is content-single-topic.php

    The code is <?php bbp_single_topic_description(); ?>

    Without any template edits, you can also place this in your child theme or in a functionality plugin.

    add_filter( 'bbp_get_single_forum_description', 'ja_return_blank' );
    add_filter( 'bbp_get_single_topic_description', 'ja_return_blank' );
    
    function ja_return_blank() {
        return '';
    }

    There is a plan to create a guide to show the template hierarchy in better detail.

    @robkk

    Moderator

    I think this will do it. Edit any words in English to German.

    function my_german_titles( $new_title ){
    // Profile page
    	if ( bbp_is_single_user() ) {
    
    		// User is viewing their own profile
    		if ( bbp_is_user_home() ) {
    			$new_title['text'] = esc_attr_x( 'Mien', 'User viewing his/her own profile', 'bbpress' );
    			
    
    		// User is viewing someone else's profile (so use their display name)
    		} else {
    			$new_title['text'] = sprintf( esc_attr_x( "%s's", 'User viewing another users profile', 'bbpress' ), get_userdata( bbp_get_user_id() )->display_name );
    		}
    
    		// User topics created
    		if ( bbp_is_user_home() && bbp_is_single_user_topics() ) {
    			$new_title['format'] = esc_attr__( "Miene Topics",        'bbpress' );
    
    		// User rueplies created
    		} elseif ( bbp_is_user_home() && bbp_is_single_user_replies() ) {
    			$new_title['format'] = esc_attr__( "Miene Replies",       'bbpress' );
    
    		// User favorites
    		} elseif ( bbp_is_user_home() && bbp_is_favorites() ) {
    			$new_title['format'] = esc_attr__( "Miene Favorites",     'bbpress' );
    
    		// User subscriptions
    		} elseif ( bbp_is_user_home() && bbp_is_subscriptions() ) {
    			$new_title['format'] = esc_attr__( "Miene Subscriptions", 'bbpress' );
    		}
    
    	// Profile edit page
    	} elseif ( bbp_is_single_user_edit() ) {
    
    		// Current user
    		if ( bbp_is_user_home_edit() ) {
    			$new_title['text']   = esc_attr__( 'Edit Your Profile', 'bbpress' );
    
    		// Other user
    		} else {
    			$new_title['text']   = get_userdata( bbp_get_user_id() )->display_name;
    			$new_title['format'] = esc_attr__( "Edit %s's Profile", 'bbpress' );
    		}
        
    }
        
        return $new_title;
    }    
    
    add_filter( 'bbp_before_title_parse_args', 'my_german_titles' );

    @robkk

    Moderator

    So basically you want to use bbPress for something other than forums?? I am leaning toward custom development and you might need to hire a developer right now, but I do not get what you mean by directory. Explain what you mean by directory, and if you really want to email me the pictures here.

    Contact

    In reply to: link admin bar change

    @robkk

    Moderator

    If you edited that file, then you edited a WordPress core file (which you should not do) and when WordPress updates again the file will be overwritten.

    @robkk

    Moderator

    You need to change titles, and what exactly is invalid??

    In reply to: link admin bar change

    @robkk

    Moderator

    Yeah I do not know really either, because of that I am going to say this is custom development and you need to hire someone to do it for you or figure it out yourself.

    In reply to: link admin bar change

    @robkk

    Moderator

    I think you using bbp-avatar plugin??

    That checkbox for the edit profile link only modifies the edit profile link in the WordPress toolbar and nothing else.

    https://github.com/imath/bbp-avatar/

    @robkk

    Moderator

    I think there is a different filter for bbPress tinymce buttons. Will check it out later.

    In reply to: link admin bar change

    @robkk

    Moderator

    If you used code from the codex for an profile link in your menu, if you want it to lead to the edit section of your profile just add /edit to the url in the code.

    @robkk

    Moderator

    You may need to contact Robin in his plugin support forum. You may need to include pictures because it was hard for me to understand.

    https://wordpress.org/support/plugin/bbp-profile-information

    @robkk

    Moderator

    haha I didn’t read the topic before and see that there was a fix, glad you have your issue resolved.

Viewing 25 replies - 1,526 through 1,550 (of 3,784 total)