Forum Replies Created
-
In reply to: Please Help – Forum order Problem
It probably got fixed in a new WordPress update. This happens sometimes.
In reply to: how to disable Author information for usersIF 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
In reply to: Template to illustrate bbPress front page?YOu are looking for a PowerPoint presentation, that lists how the forum index could have a hierarchy layout like other forum solutions??
In reply to: Auto delete replies after x days/monthsJust regular replies or spam posts??
In reply to: Change role titleIt is listed how to do it here.
In reply to: Replies not displayedTry 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.
In reply to: bbp-header background doesn't changeSorry 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
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 CSSSorry 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.
In reply to: I need to make a forum for my siteSorry 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.
In reply to: Create a themeYou create any old regular WordPress theme.
This WordPress codex guide will get you started into theme development.
In reply to: Use right sidebar instead of leftSorry 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.
In reply to: guidance to change the theme of our company forumSorry 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.
In reply to: want to help othersSorry 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.
In reply to: add template_part sevenSorry 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.
In reply to: Change meta/page title for user pagesI 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' );
In reply to: Hi! Somebody could help me with some codes, please?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.
In reply to: link admin bar changeIf 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.
In reply to: Hi! Somebody could help me with some codes, please?You need to change titles, and what exactly is invalid??
In reply to: link admin bar changeYeah 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 changeI 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.
In reply to: Hook into bbPress teeny MCE?I think there is a different filter for bbPress tinymce buttons. Will check it out later.
In reply to: link admin bar changeIf 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.
In reply to: add profile fields profile, topicYou 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
In reply to: Unable to install on withhaha I didn’t read the topic before and see that there was a fix, glad you have your issue resolved.