Forum Replies Created
-
In reply to: how to disable Author information for users
the Author information section is what exactly??
Current version of bbPress does not support imports from phpBB 3.1, next major release will.
In reply to: ERROR: Are you sure you wanted to do that?What are your permalinks structure?? Do you have a port in your url, or just a unique looking url for your site??
Also try some troubleshooting steps listed here.
In reply to: Error when people try to registerAre you sure this is a bbPress issue??
Download and put this file into your child theme in a folder called bbpress.
I think this will not work for Anonymous Posting though.
In reply to: Change meta/page title for user pagesYou are using the latest German language file right??
In reply to: Topics accessible to certain users onlyUpdated the Gist again, this time and it should work like how you want.
You will need to show the lead topic using this though.
function custom_bbp_show_lead_topic( $show_lead ) { $show_lead[] = 'true'; return $show_lead; } add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' );
In reply to: First Reply layout problemWell from what it looks like this is a paid theme so I do not have access to it. Even the demo does not have bbPress forums installed, so I cannot really pinpoint your issue.
You can ask the theme author since it is a paid theme and that you are still in the development process.
In reply to: Internal Server error on SearchTry a quick rename of the htaccess file as listed to see if it even is the htaccess file causing the issue.
If nothing happens rename it back then try the other solutions.
In reply to: First Reply layout problemThis issue is most likely caused from your theme and the the styles it used for WordPress comments.
Link to site so I could give you some CSS.
In reply to: bbcode Visual Editor for bbpressThe close tags function closed my last bbcode opening tag. You can also just close the bbcode by hitting the button again. it should show a little
/
that shows that it needs to be closed.Other than that, I explain how to use some (not all) bbcodes to the quicktags here if that helps any.
In reply to: SMF Import to bbPresssorry for the late reply, this is a good question. I might need Stephens help on this one.
Yeah any @mentions happening in the forums are going to be hidden because they could be in forum replies or topics. The @mentions that are in Activity updates on their profiles or the site activity page should show up fine though.
In reply to: Please Help – Forum order ProblemWell backing up your forums, for all the data on your site,you backup your database. Just the bbPress post types and data from all that, I might need to do some testing. It might just be using the export tool in WordPress Tools section, it might be using a plugin to backup one forum at a time, or whatever alternative I can find.
In reply to: Latest author reply avatarwhat loop-forum?? If you are using mine or someone else s custom file on the internet, I will check to see if I/they messed up something??
Does switching to a default theme and clicking the link lead you to the latest reply??
In reply to: Getting how many participants in a forumSorry for the late reply, but I do not think there is code to display the total participants in a forum. There are for topics but not single forums. Could be possible to create though.
In reply to: Change meta/page title for user pageswhich template.php file?? Did that fix your issue?? You probably shouldn’t be editing core files if that is what it is.
In reply to: Disable auto update of language filesI can’t tell if you need to put your custom language files in a different area or this is a bug in bbPress or not. I will try to get some other help from a dev to see whats up.
In reply to: template_part hierarchyI am not sure what “Secondary” could be from. It might be the template bbPress is inheriting from your theme?
In reply to: Check boxYou can add any code snippets into your child theme or into a plugin that can just hold code snippets like Functionality.
In reply to: Change meta/page title for user pagesI tried the German translation and it seems to translate the titles for the profile pages well, I tested it without an SEO plugin activated though.
In reply to: Sorting the forumEdit the forums and change the order number, for the first one either choose 0 or 1 then any other forum choose the next number in the sequence.
In reply to: How can I remove tags box when replying?Copy the form-reply.php file into your child theme and remove this code for topic tags input on the reply form.
<?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags' ) ) : ?> <?php do_action( 'bbp_theme_before_reply_form_tags' ); ?> <p> <label for="bbp_topic_tags"><?php esc_html_e( 'Tags:', 'bbpress' ); ?></label><br /> <input type="text" value="<?php bbp_form_topic_tags(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php disabled( bbp_is_topic_spam() ); ?> /> </p> <?php do_action( 'bbp_theme_after_reply_form_tags' ); ?> <?php endif; ?>
You can customize the content of the form using this CSS.
#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content { margin-top: 0; height: 210px; }
The font is inherited from your theme.
In reply to: ERROR: Are you sure you wanted to do that?Does deactivating the bbPress WP Tweaks plugin solve remove your error?? There are other ways to only show certain widgets for only bbPress pages.
In reply to: Create new topic form width#bbpress-forums fieldset.bbp-form input[type=text] { border: 1px solid #e4e4e4; padding: 0.5em 0; }
`