Forum Replies Created
-
In reply to: Full Width Forum with BrickYard theme
Use this custom CSS to make the forums full-width.
.bbpress #content { width: 100%; }
In reply to: BBPress Subscriptionson their BuddyPress profile there is a nav item called Forums, after selecting that you should see a subnav item called subscriptions.
I see it is now on your forums. I see that the CSS causing the issue is definitely from the bbPress New UI plugin in its dark theme.
Contact the developer of the plugin so other users do not come across the same issue as you are.
Oh and bbPress has classes for each of its areas on the forums, most prefixed with some kind of bbp in them. Other plugins and themes could use those classes and add CSS styles for those areas in their own respective stylesheets to style the forums differently.
In reply to: Link count for moderationYou can create a ticket in the bbPress trac, if you think this would be a great idea to have a hook for. I cannot really think of any other great uses except for the link counter feature you said though.
This is what is causing the issue.
.bbp-reply-content p { margin: 0px; padding: 0px; }
You can do this instead.
.bbp-reply-content p { margin: 0px 0px 10px; padding: 0px; }
In reply to: bbpress search engine indexingAdd forums and topics to a sitemap and send it in Google Webmaster tools for better indexation.
In reply to: Error path breadcrumbs and discussion forumDo some troubleshooting. It could be cache, your permalinks need to be refreshed, etc.
In reply to: using my template themes forumI kind of disagree with using a theme for just bbPress templates, just customize the forums to your liking with a plugin like bbP style pack.
In reply to: indispensable pluginsDepends on what you need. It may be best for you to just search the plugins directory to find what you need.
In reply to: Install problembbPress does not create any database tables it used WordPress’s tables.
Install WP Admin No Show to disable users from accessing the WordPress backend.
Troubleshoot for missing pages.
In reply to: PHP7 compatibilityNot sure, bbPress could always possibly need only slight changes to support it if any. You can always try it on a test server/local development area to check and make sure though.
In reply to: Facebook preview window when I share the siteWhat does this have to do with bbPress?
In reply to: plugin Button to create new topicis it possible to make the “Forum” dropdown menu a required field, and to require that in that drop down users choose a forum and not be able to choose “no forums” (which currently shows as the the default option).
I will create a trac ticket for this later today. It might be best for it to be required and for the default text to be “choose forum” instead.
You can create a button to your new topic page easily by using the text widget provided from WordPress, and adding this simple HTML.
<a href="http://yoursite.com/new-topic" class="button">New Topic</a>
In reply to: Add/Change User rolesCreate new roles with custom capabilities.
TO have individual colors for each role, there is a function that might help. I think you need to create a varialbe to pass the
bbp_get_user_display_role()
with the id of the user in the reply authorbbp_get_reply_author_id()
to get the specific user role of the reply author then pass the user role name into $classes. You might also need to usestrtolower()
to make the class in your code lowercase.function my_reply_class($classes) { $classes[] = 'test-class'; return $classes; } add_filter( 'bbp_get_reply_class','my_reply_class' );
After all that, all you would need to do is add this CSS.
.myrole .bbp-author-role { background-color: blue; }
In reply to: Link count for moderationThis might be custom development and you may need to hire a developer to create this for you.
In reply to: Full Width Forum with BrickYard themelink to your site you might need some extra CSS.
In reply to: WP_DEBUG errorsNot really a bbPress issue, bbPress just spits out the information. Read this codex guide explaining the issue.
In reply to: my activity in the fourm isnt showing upThis sounds exactly like your other topic here…and the other one you also created.
It is most likely a cache issue on your end. Make sure you have WP-Super-Cache set up correctly and that the cache refreshes when a new post is published or updated.
Clear all cache files when a post or page is published or updated.
I saw this message on your forums page source code that is why I know you are using that specific plugin.
<!-- Dynamic page generated in 1.073 seconds. --> <!-- Cached page generated by WP-Super-Cache on 2015-08-25 19:54:03 --> <!-- super cache -->
Also do not post multiple topics of the same issue, just update your original topic.
link to a post that should have line breaks so I can check it out.
In reply to: Custom freshness linksDo you trash or restore any topics?? Some users have been saying this may be the cause of the issue.
In reply to: Custom freshness links@inget should have used this.
.forum-archive li.bbp-forum-freshness { display: none; } .forum-archive li.bbp-forum-info { width: 77%; }
Do you have an incorrect freshness date on your forum archive?? Plus that ticket you linked to is bbpress.org specific, that is why you see the compenent being Site – bbPress.org and that the pictures are of bbpress.org.
In reply to: Change Archive page titleOh that was what you were trying to change, I thought you meant title tag and all that. Yeah whats in the blue bar is coming from your theme, it probably shows Archive for all archive pages.
You can also see if you to yoursite.com/topics it shows the same thing. I bet your theme authors can give you a function to modify it for bbPress pages using the bbPress condtionals
bbp_is_forum_archive()
andbbp_is_topic_archive()
In reply to: How to modifyINstall this plugin
https://wordpress.org/plugins/wp-admin-no-show/
or just use this code.
add_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } }
You can follow this to add a profile link to your menu.
In reply to: Two columns of forumsWhat exactly do you mean??
In reply to: Deny Ability To Change Display NameAdd this to your functions.php file in your child theme or functionality plugin to remove the display name changer in bbPress and also WordPress.
add_action('show_user_profile', 'remove_display_name'); add_action('edit_user_profile', 'remove_display_name'); function remove_display_name($user) { if ( bbp_is_single_user_edit() ) { ?> <script> jQuery(document).ready(function() { jQuery('#display_name').parent().hide(); }); </script> <?php } else { ?> <script> jQuery(document).ready(function() { jQuery('#display_name').parent().parent().hide(); }); </script> <?php } }