Search Results for 'remove sidebar'
-
Search Results
-
Topic: Symbols in front / Forum
Hey guys!
I’m working on forum in bbPress and got some symbols in front of debatforum. It is 5 of these symbols > in the right sidebar. I need to remove these from the code, but can’t figure out which files. Can you help me?hi,
My genesis theme adds a padding to .entry and therefore the content-sidebar pages have this padding too. It makes the forum content really narrow. I want to remove that padding. Only for forum pages and topics. How?
The site is still in development but i included a url that shows the issue.
WP version 4.2.2
BBpres verion 2.5.7https://bfgv.nl/forums/onderwerp/dit-is-ook-een-test/
Thnx
Hello,
WP 4.2.2
BB 2.5.7Looking to find where I can just remove the “You Must Be Logged In” prompts all together. I’ve already got the login/register stuff added to my sidebar, I don’t need the prompts to direct people.
These are the specific things I’m speaking of. Can I just block them somehow in the css or is there somewhere I can simply delete the code to remove them all together?
Thanks for your help.
I have this theme from ThemeFuse called GameZone, and every changes i have made since the original i usually have fix by my self somehow, but the other day i was tired of PHPBB and converted and move it over completly to BBPress, and it work as is should i got some of the css fix so its almost as ret of the page, the only problem is i found out even i use the themes own “widget” deattachtment for pages i need to be with out side bars Like Guides etc.
Then the BBPress have put my finish touch on hold for the last 36 hrs and i am really irritated over it , because why should a thing i literally find 100 of topics about this problem. Reeally think it is weird there isnt being any solution implented as part of bbpress.
Anyway my forum here is correct size in the “front-page”
1. Frontpage : http://www.playstationforum.dk/debat-forum/
2. Sub-page : http://www.playstationforum.dk/debat/kategori/playstationforum-dk/As yoy see the sub-page dont have full width even i have remove made a page.php and copy it over to my child theme and rename it to bbpress.php and remmove
<?php get_sidebar();?>
This is mention alot of places and everything there is sidebar related, but i can really not figure out what because no matter what i remove it either remove background completly or remove the sites build up. And i have made a Page for it and use the shortcode. – Still nothing – Hope someone can help. I actually change to bbpress because i though the hardest part would actually import everything from PHPBB
here is my code as it is now
<?php global $is_tf_blog_page,$post; $id_post = $post->ID; if(tfuse_options('blog_page') != 0 && $id_post == tfuse_options('blog_page')) $is_tf_blog_page = true; get_header(); if ($is_tf_blog_page) die(); ?> <?php $sidebar_position = tfuse_sidebar_position(); ?> <?php tfuse_shortcode_content('before');?> <div class="main-row content-row"> <div class="container"> <?php if ($sidebar_position == 'left') : ?> <div class="middle-main sidebar-left"> <?php endif;?> <?php if ($sidebar_position == 'right') : ?> <div class="middle-main content-cols2"> <?php endif;?> <?php if ($sidebar_position == 'full') : ?> <div class="middle-main content-full"> <?php endif; ?> <div id="primary" class="content-area"> <div class="inner"> <article class="post post-details"> <?php if(!tfuse_page_options('hide_title')):?> <header class="entry-header"> <h1 class="entry-title"><?php echo get_the_title();?></h1> </header> <?php endif;?> <div class="entry-content"> <?php while ( have_posts() ) : the_post();?> <?php the_content(); ?> <?php break; endwhile; // end of the loop. ?> </div> </article> <?php if ( comments_open() ) : ?> <?php tfuse_comments(); ?> <?php endif;?> </div> </div> <?php if (($sidebar_position == 'right') || ($sidebar_position == 'left')) : ?> <div id="secondary" class="sidebar widget-area"> <div class="inner"> </div> </div> <?php endif; ?> </div> </div> </div> <?php tfuse_shortcode_content('after'); ?> <?php get_footer();?>
the forum is too narrow due to the sidebar (it won’t be a problem in wordpress), it’s even worse if a topic has a lot of pictures (the pictures looks very narrow), is there any method to remove the sidebar in the forum totally but still keep it in wordpress? also, it’s better that the change won’t affect the view from smartphone.
please note i’m using the twenty-fifteen theme (I’ve created a child theme for it already).
I have a child theme setup using the Child Theme Configurator plugin. I have the following in the child theme folder; style.css, function.php and bbpress.php (renamed from page.php).
I am using the WP-Englightened theme.
I copied the page.php to the child root and renamed it to bbpress.php. There doesn’t seem to be anything in that file to remove for the sidebar.
<?php get_template_part( 'content', 'before' ); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); global $do_not_duplicate; $do_not_duplicate[] = $post->ID; ?> <div <?php post_class('singlepage clearfix'); ?> id="single-page-<?php the_ID(); ?>"> <div class="entry"> <h1 class="page-title"><?php the_title(); ?></h1> <?php if ( get_post_meta( $post->ID, 'video_embed', true ) ) { $video_embed = get_post_meta( $post->ID, 'video_embed', true ); echo '<div class="post-feature-video single">'; echo '<div class="single-video">'; echo $video_embed; echo '</div>'; echo '</div>'; } ?> <?php the_content(); ?> <div style="clear:both;"></div> <?php wp_link_pages(); ?> </div> </div> <?php endwhile; endif; ?> <?php get_template_part( 'content', 'after' ); ?>
I tried putting this in the style.css file based on a thread here.
.site, .site-header { max-width: 100%; } .bbpress-forums .col-2cl .main { background: none repeat-y right 0; padding-right: 0; } .site-content .entry-header, .site-content .entry-content, .site-content .entry-summary, .site-content .entry-meta, .page-content { max-width: 100%; } .form-allowed-tags { display: none; } div.bbp-breadcrumb, div.bbp-topic-tags { font-size: inherit !important; } #bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results { font-size: inherit !important; } #bbpress-forums { font-size: inherit !important; } .bbpress .hentry { margin: 0 auto 48px; max-width: 100%; } @media screen and (min-width: 1008px) { .bbpress .site-content { margin-right: 0; margin-left: 182px; } } @media screen and (min-width: 1080px) { .bbpress .site-content { margin-left: 222px; } } @media screen and (min-width: 1218px) { .bbpress .site-content .entry-content { margin-right: 0; } } @media screen and (min-width: 673px) { .bbpress .site-content { margin-right: 0; } }
If I create a page and use the short code for bbpress and tell it in the page options to do full width it works fine for the main page but not for the rest of them.