Search Results for 'forum css'
-
AuthorSearch Results
-
March 15, 2020 at 1:20 pm #209395
In reply to: bbPress 2.6.4 Remove Default Search Bar
Robin W
Moderatorhmmm… css won’t do it then.
you’ll need to amend content-archive-forum.php in your child theme
find
wp-content/plugins/bbpress/templates/default/bbpress/content-archive-forum.phptransfer this to your pc and edit
delete line 17
<?php bbp_get_template_part( 'form', 'search' ); ?>and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/content-archive-forum.phpbbPress will now use this template instead of the original
March 15, 2020 at 12:16 pm #209390In reply to: bbPress 2.6.4 Remove Default Search Bar
Robin W
Moderatorput this in the custom css of your theme
#bbpress-forums #bbp-search-form { display: none !important; }March 14, 2020 at 4:10 am #209358In reply to: bbPress + Elementor Header
Robin W
Moderatorjust tried it, it is all good, you must have missed a character off somewhere, just add it to the end
<?php function hello_elementor_child_enqueue_scripts() { wp_enqueue_style( 'hello-elementor-child', get_stylesheet_directory_uri() . '/style.css', [ 'hello-elementor' ], '1.0.0' ); } add_action( 'wp_enqueue_scripts', 'hello_elementor_child_enqueue_scripts' ); function ele_disable_page_title( $return ) { return false; } add_filter( 'hello_elementor_page_title', 'ele_disable_page_title' ); add_filter( 'bbp_register_topic_post_type', 'rew') ; function rew ($rew) { $rew = array( 'labels' => bbp_get_topic_post_type_labels(), 'rewrite' => bbp_get_topic_post_type_rewrite(), 'supports' => bbp_get_topic_post_type_supports(), 'description' => esc_html__( 'bbPress Topics', 'bbpress' ), 'capabilities' => bbp_get_topic_caps(), 'capability_type' => array( 'topic', 'topics' ), 'menu_position' => 555555, 'has_archive' => ( 'forums' === bbp_show_on_root() ) ? bbp_get_topic_archive_slug() : false, 'exclude_from_search' => true, 'show_in_nav_menus' => true, 'public' => true, 'show_ui' => current_user_can( 'bbp_topics_admin' ), 'can_export' => true, 'hierarchical' => false, 'query_var' => true, 'menu_icon' => '', 'source' => 'bbpress', ) ; return $rew ; } add_filter( 'bbp_register_reply_post_type', 'rew2') ; function rew2 ($rew) { $rew2 = array( 'labels' => bbp_get_reply_post_type_labels(), 'rewrite' => bbp_get_reply_post_type_rewrite(), 'supports' => bbp_get_reply_post_type_supports(), 'description' => esc_html__( 'bbPress Replies', 'bbpress' ), 'capabilities' => bbp_get_reply_caps(), 'capability_type' => array( 'reply', 'replies' ), 'menu_position' => 555555, 'exclude_from_search' => true, 'has_archive' => false, 'show_in_nav_menus' => true, 'public' => true, 'show_ui' => current_user_can( 'bbp_replies_admin' ), 'can_export' => true, 'hierarchical' => false, 'query_var' => true, 'menu_icon' => '', 'source' => 'bbpress', ) ; return $rew2 ; }March 6, 2020 at 10:33 pm #209190In reply to: Dara theme bbpress help!
webcreations907
ParticipantYou could add the below CSS to get your forums off your header and make the forums fill the page width.
You’d want to add the code to
style.cssfile, preferably in a child theme so that when you update you don’t have to re-add the code. Or if that theme has a options panel with a area to add custom CSS.body.bbpress .content-wrapper .content-area { max-width: none; padding: 0 7px; } body.bbpress .content-wrapper, body.bbpress.no-sidebar.page .content-wrapper { margin: 0; padding: 0; } body.bbpress .site-content { padding: 30px 0; }Just thought I’d throw that out there as a option 🙂
March 5, 2020 at 4:53 pm #209171In reply to: Dara theme bbpress help!
Robin W
Moderatorok, I’d suggest you take the breadcrumb out as well – that’s the
Home › Forums › CommunitySo put this in your theme’s custom css area
div.bbp-breadcrumb { display: none !important; }March 5, 2020 at 4:44 am #209146In reply to: Dara theme bbpress help!
Robin W
Moderatoryour theme has a css rule
.content-wrapper.with-featured-image { margin: -4.7em 0 0 120px; padding: 1.3em 55px 0 1.9em; }Basically the ‘margin: -4.7em’ bit is causing the forum to show at a minus height, thus crashing into the header.
the forums page (https://badasscrafters.com/forums/) has the rule without-featured-image so is fine.
Do you have a ‘forums’ page – ie you have a page in your site which has the shortcode
[bbp-forum-index]February 13, 2020 at 9:46 am #208667In reply to: Styling issue inherited from theme
Robin W
Moderatornot certain this will work, but put this in the custom css area of your theme
#bbpress-forums ul li::before { content : none !important ; }February 4, 2020 at 2:05 am #208444In reply to: sub topics not showing
haddly
Participant@robin-w
The reason that it is dequeued is that it was built that way by the software company that built our theme. This, I assume, was so that the forum would look like the rest of our site.
My issue, by adding the($args)arguments (to that snippet of code) and by removing that one line of CSS has now resolved this issue completely.
Thank you!February 3, 2020 at 5:07 am #208428In reply to: sub topics not showing
haddly
Participant@robin-w, @hydrogriff:
Hi, for me, the CSS styling issue is definitely a theme problem. In my styles.css file I have additional CSS for the styling of BBpress forum.
#bbpress-forums .bbp-forums-list li {font-size: 11px;}
I simply removed this line (font-size) from my style sheet and the standard BBPress kicked in.January 29, 2020 at 4:45 am #208303In reply to: sub topics not showing
haddly
Participant@robin-w
Hi there. I have finally found why this is not displaying. It isn’t the plugins 1 or 2 above but a snippet of code I added to my functions.php file a long while back. I remember adding it because the subforum topics weren’t displaying correctly and were displaying in a horizontal fashion (I think).If I remove this piece of code, the subforum topics now appear. The CSS is a little funky and the text a little small, but I can fix this. Sorry for not thinking to check the added snippets to my functions.php sooner.
function custom_bbp_sub_forum_list() {
$args['separator'] = '';
return $args;
}
add_filter('bbp_after_list_forums_parse_args', 'custom_bbp_sub_forum_list' );January 28, 2020 at 4:21 pm #208294In reply to: Edit the bbPress login widget
Matthias
ParticipantHi Robin,
I don’t know why, but I can not fix the css of the login widget.
Just need a white background and a litte padding, but all attempts with .bbp-form; .bbp-login-form or .sidebar-item fail…?
https://gtauscht.de/forums/Do you have an idea?
Thanks
MatthiasJanuary 28, 2020 at 12:05 pm #208289In reply to: bbp-topic-form won’t show up properly on mobile
nickds
ParticipantHi Clive, gyus from Divi helped me out to sort it:
add the following CSS code to Custom CSS box in Divi > theme options > general settings:
@media(max-width:980px) {
div#bbpress-forums {
overflow: visible !important;
}
}Maybe it will help you too.
NickJanuary 26, 2020 at 5:25 am #208229In reply to: Header Spacing
Robin W
Moderatortry this in the custom css area of your theme
#bbpress-forums { margin-top: 30px !important; }and adjust the 30px to suit
January 24, 2020 at 5:49 am #208188In reply to: sub topics not showing
hydrogriff
ParticipantI am not sure if this is much of a help. Pasting this from a previous reply.
The subforums and replies were still working in 2.6-beta-1 and 2.6-beta-2.
Additional information:
- CSS stopped working since 2.6-beta-1.
- Replies to topics stopped working since 2.6-rc-1.
- Subforum display stopped working in 2.6-rc-7.
January 20, 2020 at 12:42 pm #208105Robin W
ModeratorIt is that the name is so short that bbpress can fit it in the space
you could fix using
#bbpress-forums div.bbp-forum-author, #bbpress-forums div.bbp-reply-author, #bbpress-forums div.bbp-topic-author { width: 100px; }in the custom css area of your theme
January 20, 2020 at 12:10 pm #208102In reply to: bbp-topic-form won’t show up properly on mobile
Robin W
Moderator@nickds the issue is site/theme specific – I cant fix everyone’s theme issues !!
a quick look at your site and the forums page appears to have issues with your theme performing calculations on the css eg
.entry .entry-content > *, .entry .entry-summary > *, .entry .entry-summary > .wp-block-group > .wp-block-group__inner-container > *, .entry .entry-content > .wp-block-group > .wp-block-group__inner-container > * { max-width: calc(6 * (100vw / 12) - 28px); }January 20, 2020 at 6:01 am #208092wriper
ParticipantHello guys,
We have forum about fitness but after update our css is broken when you see some nicknames with avatars they are really bad positioned . Is it css issue? Some conflict with plugin? I didnt find out. This issue is only with some nicknames not all. Attaching screenshot and you can see it live here

Thank you very much for your help
January 11, 2020 at 10:04 am #207825Chuckie
ParticipantIn my case the only way I have achieved any forum styles is manually inside my themes “additional css” area. Nothing else worked.
January 10, 2020 at 10:44 am #207807Topic: How to hide specific forums in css?
in forum Troubleshootinglaprek
ParticipantHello,
I have created few forums. I’m using “bbp style pack” plugin which lets me to have categories as forum title and forums with that category as parent. I need to hide few forums because I would like to display them on a different page.
Here is what I’ve tried:ul#forums-list-9201.bbp-forums.bsp-template1{
display:none !important;
}.forums-list-9201.bbp-forums.bsp-template1{
display:none !important;
}#bbpress-forums.forums-list-9201.bbp-forums.bsp-template1{
display:none !important;
}Any idea on what am I doing wrong?
January 9, 2020 at 2:14 pm #207776Robin W
Moderatoryes, that’s an issue with 2.6.x where bbpress uses a min file – they are working on a fix, but in the meantime put this in the custom css tab of the style pack plugin
#bbpress-forums .status-closed, #bbpress-forums .status-closed a { background-color: #fdd !important; }January 8, 2020 at 7:48 pm #207727In reply to: Hide Breadcrumbs on Forum Home Page Only
cr53
ParticipantHi Robin, thanks for your reply.
I’ve tried using the CSS you provided in both the bbPress Style Pack Custom CSS tab and in my theme’s Custom CSS area and neither were successful at hiding the breadcrumbs on the forum home page.
When I inspect the breadcrumbs element I’m looking to hide/remove, I see that it’s labelled;
<span class="bbp-breadcrumb-current">Forums</span>I would like to show the current breadcrumb on all further pages, however no breadcrumbs on the forum homepage.
January 8, 2020 at 1:38 pm #207719In reply to: Hide Breadcrumbs on Forum Home Page Only
Robin W
ModeratorPut this in the custom css tab of style pack or your theme’s custom css area
.forum-archive div.bbp-breadcrumb { display : none ; }January 1, 2020 at 1:44 pm #207390In reply to: Can’t Read Toolbar after Update
Editor Mike
Participantusing chrome and the page source I see this:
<script type=”text/javascript”>
/* <![CDATA[ */
var gdbbPressToolsInit = {
quote_method: “bbcode”,
quote_wrote: “wrote”,
bbpress_version: 26,
wp_version: 53,
wp_editor: 1 };
/* ]]> */
</script>
<style type=”text/css”>
#bbpress-forums div.bbp-the-content-wrapper input {
color: #000;
}</style>
<style type=”text/css”>
#wpadminbar #wp-admin-bar-gdbb-toolbar .ab-icon:before {
content: “\f477”;
top: 2px;
}@media screen and ( max-width: 782px ) {
#wpadminbar li#wp-admin-bar-gdbb-toolbar {
display: block;Which would suggest it is there?
December 14, 2019 at 4:46 pm #206975In reply to: sub topics not showing
hydrogriff
Participant@johnjamesjacoby and @robin-w, can we expect a fix for the css and subforum issue in 2.6.4? Sorry to keep bumping. I just checked 2.6.3 release log and these issues weren’t addressed.
December 5, 2019 at 4:34 pm #206664Chuckie
ParticipantI added some CSS styling to make the error notices stand out on my site:
#bbpress-forums div.bbp-template-notice.error { background: #fff !important; padding: 2px !important; border: solid 4px #000 !important; outline:#ff0 solid 4px !important; border-radius: 0px; } #bbpress-forums div.bbp-template-notice.error li { color: #000 !important; }I am very happy with that. It is just this issue of bbPress jumping to the top of the topic rather than the actual error notice it has created in the reply forum.
Is there a workaround for that or must it be fixed by bbPress authors?
-
AuthorSearch Results