Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 776 through 800 (of 2,719 total)
  • Author
    Search Results
  • Robkk
    Moderator

    I have found a way to hide most notices by CSS. Question is, can I keep it that way, or will there be any important notices not showing up later when the user is interacting with the form:

    Well that is the thing , I would have to know what is important to you. The notice that shows when a users post is in moderation might be useful so that they know the moderator has to approve their post , but that will not be in til 2.6 of bbPress. Some plugins might hook into that , and some notices might be for post flooding and maybe some users might think their is a bug on your site if they do not know why they couldn’t post.

    The Topic/Forum descriptions could also be removed with some PHP using this function and you can place it in a plugin like this.

    https://wordpress.org/plugins/functionality/

    It should be Plugins > Edit Functions. You can place any code snippet you might see useful into this.

    You can place the snippet after the plugin information.

    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 '';
    
    }

    The users plugin you suggest is from 2 years ago; I would not install that. I am told again and again by my hoster and main plugin providers that old plugins are one of the greatest vulnerabilities.

    It should be fine , it is a fairly small plugin and very well coded.

    You can see the plugins main code functionality in the link below. There is also an empty languages folder and a readme.txt file also in the plugin.

    https://gist.github.com/jaredatch/3868274

    And then I had to turn off the buttons for html because they are badly formatted, barely legible in white text on light-grey background.

    You can fix that with some CSS too. Here is a simple black background to fix it.

    #bbpress-forums #qt_bbp_reply_content_toolbar input,
    #bbpress-forums #qt_bbp_topic_content_toolbar input {
      background-color: #000;
    }

    I also would like to offer my clients a possibility to create a profile page with some background on themselves and the business project they are working on.

    There is a bunch of plugins that add custom fields like BuddyPress some premium plugins add social features too , just like BuddyPress. The thing I am guessing you want is to highlight it on the Home of the users profile page with the forum role and user stats. This would require some PHP coding to achieve. By default the user can add a description and it would show up on the front-end , nothing too crazy.

    nmschaller
    Participant

    Hello robkk,

    Thank you very much for your answers. They helps me get started.

    I have found a way to hide most notices by CSS. Question is, can I keep it that way, or will there be any important notices not showing up later when the user is interacting with the form:

    /* bbpress */
    div.bbp-template-notice.info {
    display: none;
    }
    
    div.bbp-template-notice {
    display: none;
    }
    

    The bbpress pages cause me headaches. The original bbpress pages for forum index and user page all come out unformatted in my theme, practically useless. I have created a forums page by using shortcodes for forum index and topics index. That is well formatted and informative. But only with one level of hierarchy.

    The users plugin you suggest is from 2 years ago; I would not install that. I am told again and again by my hoster and main plugin providers that old plugins are one of the greatest vulnerabilities. Isn’t there a way to block all access to pages containing mysite/forums/users/* in .htaccess or something like that?

    And then I had to turn off the buttons for html because they are badly formatted, barely legible in white text on light-grey background.

    I also would like to offer my clients a possibility to create a profile page with some background on themselves and the business project they are working on. I have tried BuddyPress but it is not for me. I cannot code and this seems to be necessary to effectively use BuddyPress. So, I have not found a good solution for that yet. For the moment I have chosen to go with the wordpress.com/gravatar profiles and encourage people to introduce themselves and their project in the forum.

    Nicole

    Robkk
    Moderator

    How do I eliminate:

    Notices from “This forum is empty.” and “Oh bother! No topics were found here!” That’s obvious when I open a new forum. I would post welcomes if that would solve the problem. But I have seen that this replaces the notices with even longer info that probably nobody wants to read.

    You can create a topic. A super sticky topic should show above all forums if you want to have a welcome topic or a general rules topic, if that is what you want. Creating a topic in a forum should remove that notice.

    What wouldn’t they want to read? Please explain more on this. Is it the Topic/Forum descriptions??

    “Maximum Length: 80″ for the title – People will notice.

    Well yeah that is the point so that they know the max characters to use in a topic, you can remove it but it would require a template edit.

    Do you know how to use FTP , use a file editor like notpad++ , and possibly create a child theme?? I can what file to edit as long as you put the file in your child theme in a folder called bbpress.

    Further notices like “Your account has the ability to post unrestricted HTML content.” makes people probably think: When do I get to the posting form?

    Only Keymasters/Admins can see this notice. Regular participants cannot post unrestricted html content for security reasons. This is another notice that would require a template edit to remove the specific notice?? I can show you some CSS to remove all notices but you might find them handy. Do you want to remove all the notices?

    Topic status: … closed. In an open discussion, who decides when a topic is closed?

    Keymasters and Moderators should only close topics.

    Is there any plugin with which I can deactivate this?

    No.

    How can I block these pages from being publicly viewed? The forums and the participants profiles shall all be private.

    You can use this plugin , but it is best without BuddyPress.

    https://wordpress.org/plugins/bbpress-members-only/

    #163702
    jamborambo7
    Participant

    Hello everyone,

    I am having an issue with trying to make my bbpress forum full-width. I’ve looked through several troubleshooting guides and nothing has seemed to work. I am using Marketica theme with bbpress plugin.

    From this link below:
    https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/
    I’ve located the file it is pulling from (through What the File plugin) and it is from bbpress.php (since I copied a page.php file and renamed it to bbpress.php and added it into my Marketica child theme) file directory.

    I then changed the style.css file in the Marketica child theme and injected:

    .bbPress #primary {
    display: none;
    }
    .bbp-forums {
    width: 100%;
    }

    I’ve tried other css stylings that I found online and nothing seems to have worked. Can someone please help me? I’m running out of ideas! Thank you all in advance.

    nmschaller
    Participant

    Hello,

    I’d appreciate your help on this.

    I’d love to integrate forums into my wordpress site, but how do I get rid of all the clutter in bbpress?

    There is really cool community software out there like Flarum or the P2 theme that put the focus on the people discussing and on the topics, not on status infos.

    That makes me wonder: How do I get bbpress to be more like them while maintaining the basic functionality of the forum software and the look and feel of my theme?

    How do I eliminate:

    – Notices from “This forum is empty.” and “Oh bother! No topics were found here!” That’s obvious when I open a new forum. I would post welcomes if that would solve the problem. But I have seen that this replaces the notices with even longer info that probably nobody wants to read.

    – Further notices like “Your account has the ability to post unrestricted HTML content.” makes people probably think: When do I get to the posting form?

    – “Maximum Length: 80” for the title – People will notice.

    – Topic status: … closed. In an open discussion, who decides when a topic is closed?

    These are just some examples.

    I do not know how to edit functions.php. I have fields for Filters and Hooks in my theme options, but I would need clear instructions where to put what, or some CSS.

    Is there any plugin with which I can deactivate this?

    Thanks a lot for some hints.

    Nicole

    #163625
    RemcoH
    Participant

    Not yet. The problem is not with full-width pages but with content-sidebar pages:) https://bfgv.nl/forums/zoeken/test/

    Still cant figure out how to isolate the forum from the rest of the site’s css.

    #163583

    Topic: Width change

    in forum Showcase
    klayshen
    Participant

    hello im new to using bbpress and need some help im trying to find in the css file for bbpress the width of the entire forum window and can not find it please help

    orko9696
    Participant

    I need to change the table header “Forum” to “Index”, searched for a while but didnt found any fix yet.
    Isnt there any css hack available?

    #163516
    Robkk
    Moderator

    @lilmisskatie

    Its the themes CSS causing an issue with the input box for the topic title.

    This custom CSS should do it.

    #bbpress-forums input#bbp_topic_title {
    	float: none;
    	padding: none;
    }
    
    #bbpress-forums .bbp-form p {
    	float: none;
    	margin: 0;
    }

    Tell your themes support this too.

    If you feel like donating you can do so here

    About Me

    #163491
    sharongraylac
    Participant

    Hello!

    For some reason the “Topics Started” tab (on profile pages) works correctly, showing only the titles of forum posts. However, the “Replies Created” shows the full post.

    Since these are private forums, I’m concerned about the general public accessing these posts.

    Does anyone know how to fix this issue?

    Here’s a sample link: http://bellynsoul.com/members/admin/forums/replies/

    (Please ignore the css issues- I’m in the middle of customizing.)

    Thanks so much!
    Sharon
    bellynsoul.com

    #163432
    mshivsharan
    Participant

    Hey @Robkk,
    The updated link is http://www.theiotportal.com/forum/iot-forum
    I don’t know how to use CSS to hide it…
    Could you help me out please?

    #163394
    RemcoH
    Participant

    Hi, not yet.

    I changed that page to a fullwidth page. The issue with the padding remains. I tried to use some other css but that also effects the bbpress layout.

    See this page where the output is still with a padding: https://bfgv.nl/forums/zoeken/test/

    How can I remove the padding here without effecting the rest?

    #163358
    rolyestemonio
    Participant

    Hi Everyone,

    I am just newbie on this forum bbPress and i guess something is not right with this part:

    Step 6: Copy the Default bbPress Theme to Your Child Theme Folder

    The default files are no longer stored in wp-content > plugins > bbpress > bbp-themes. There is a folder called default at bbpress > templates > default, but which files need copying I do not know.

    While still in FTP and looking at the root folder of your WordPress installation, go to bbPress’ theme folder. That is, go to wp-content > plugins > bbpress > bbp-themes > bbp-twentyten. Download all the files from this folder except style.css. These are the files that will style your bbPress theme.

    Now return to your child theme folder (wp-content > themes > yourthemefolder-child). Upload the default bbPress theme files to the child theme folder. You can change the image you see for your child theme in the admin area by uploading a new screenshot.png image to this folder.

    I did not saw wp-content > plugins > bbpress > bbp-themes > bbp-twentyten the plugin directory so maybe it was mess i guess. What i saw is this wp-content > plugins > bbpress > templates > default.

    Any helps should highly appreciated.

    Thanks.

    #163167
    Joe Dirt
    Participant

    When I click the Forum link on the main menu to my site I am taken to the forum page. The menu link is of course the “active” link and highlighted in blue.

    But when I click on any of the forums the Forum link in the menu is no longer “active”

    I would like my Forum menu link to stay “active” (w/blue hyperlink) whenever users are within any of my forum sections.

    Is this possible?
    Implementing this with css would be great.

    My site is: http://www.carrielachance.com

    #163130
    Robkk
    Moderator

    No you were trying to find this code as if it was already in your theme , I just showed you the original code so you could understand why it was causing the issue.

    But just place this CSS code where you would put custom CSS like what I already listed.

    You do not have to replace any code just add it as custom css

    #bbpress-forums .single_post a {
      font-size: 12px !important;
      margin-left: 0 !Important;
    }

    Since your bbPress forums look custom I can’t tell which is custom and what could be your theme so you would have to edit this code and replace the original code in the bbpress.css file if you want or just place it in some other custom css areas with !important after the width to help out.

    You can place the code in the bbpress.css file where you want , it is your site
    the two places i said would be better for beginners so that the code doesn’t conflict with the media queries.

    li.bbp-forum-topic-count,
    li.bbp-topic-voice-count,
    li.bbp-forum-reply-count,
    li.bbp-topic-reply-count {
    border: 0px none;
    width: 10% !important;
    margin-right: 20px !important;
    margin-top: 0px !important;
    }
    #163129
    stiffmeister12
    Participant

    Okay so if I am understanding this correct (sorry im still learning this stuff)
    for my themes style.css files you want me to find the code

    .single_post a {
    font-size: 14px ;
    margin-left: 0 ;
    }
    and replace it with

    #bbpress-forums .single_post a {
    font-size: 12px !important;
    margin-left: 0 !Important;
    }

    And for this code

    li.bbp-forum-topic-count,
    li.bbp-topic-voice-count,
    li.bbp-forum-reply-count,
    li.bbp-topic-reply-count {
    border: 0px none;
    width: 10% !important;
    margin-right: 20px !important;
    margin-top: 0px !important;
    }
    you want me to open up the bbpress.css and add it above the media queries or just at the top above the other css rules?

    #163127
    Robkk
    Moderator

    Your theme had something similar to this CSS

    .single_post a {
      font-size: 14px ;
      margin-left: 0 ;
    }

    So the new CSS I gave you would overwrite it only on bbPress forums.

    you can add it

    to your child themes style.css

    in a custom css plugin

    and you could add it to the bbpress.css file if you put it in your child theme in a folder called css somewhere above the media queries or just at the top above the other css rules.

    #163124
    stiffmeister12
    Participant

    I just checked my themes style.css and there is nothing with bbpress forums in it right now for some reason there is however css code in my responsive.css for bbpress forums

    #bbpress-forums .status-category li.bbp-in-forum-freshness {
    margin-left: 1px;
    width: 33.494% !important;

    #bbpress-forums .bbp-topics li.bbp-body ul.topic {
    border-bottom: medium none !important;
    border-left: 0 none !important;
    border-top: 2px solid #aaa !important;
    box-shadow: 1px 1px 0.5px 0 rgb(221, 221, 221);

    #163112
    Robkk
    Moderator

    This seems very custom , looks pretty good though

    The bbPress forum header labels have certain widths to them. So this is the CSS you might want to adjust.

    li.bbp-forum-topic-count, 
    li.bbp-topic-voice-count, 
    li.bbp-forum-reply-count, 
    li.bbp-topic-reply-count {
      border: 0px none;
      width: 10% !important;
      margin-right: 20px !important;
      margin-top: 0px !important;
    }

    It might look shifted because you are trying to make your forums look more table like.

    The username being shifted is because of some CSS from your theme being added into bbPress.

    This custom css might help.

    #bbpress-forums .single_post a {
      font-size: 12px !important;
      margin-left: 0 !Important;
    }
    #163110
    stiffmeister12
    Participant

    So I am using a custom theme for my site and when I integrated bbpress into my theme the alignment is just off for some reason. On the home page the top bar is a little miss aligned where it says “topics” and “posts” Link – http://dailymut.com/dailymut-forums/

    When I go into a topic the alignment is really off under “topic” and a part of background is missing under “voices” “posts” and “freshness”. And There is a random circle over the “voices” text for some reason. Link – http://dailymut.com/forums/forum/madden/mut-player-reviews/

    Finally when I go into the Topic The picture is not aligned with the username and the text box looks off as well.

    I have tried to change the style.css and I have tried to change the bbpress CSS and nothing has worked maybe im imputing the wrong code or maybe im not in putting it correctly. Either way if anyone can check it out and see what the problem is and could tell me what code to input and where specifically to put it that would be greatly appreciated.

    Robkk
    Moderator

    I do not see the issue on your site currently.

    I do see these weird avatar image placement though.

    Add this CSS to fix that issue.

    #bbpress-forums p.bbp-topic-meta img.avatar {
      display: inline !important;
    }
    #162901
    husk3r
    Participant

    hello, i am using bbpress in a page with the shortcode.
    Ive managed to remove the sidebar creating a template which code is as follows ;
    ——————————————————————————-
    <?php
    /*
    Template Name: Forums
    */

    get_header(); ?>

    <div id=”primary” class=”site-content-forums”>
    <div id=”content” role=”main”>

    <?php while ( have_posts() ) : the_post(); ?>
    <?php get_template_part( ‘content’, ‘page’ ); ?>
    <?php comments_template( ”, true ); ?>
    <?php endwhile; // end of the loop. ?>

    </div><!– #content –>
    </div><!– #primary –>

    <?php get_footer(); ?>
    ——————————————————————-
    and then applying this custom CSS

    #site-content-forums {
    float: left;
    width: 100%;
    }

    in the page, ive chosen this template.

    BUT the forum still is not full width
    please help me!!

    #162836

    Topic: Custom CSS

    in forum Troubleshooting
    jbeagley
    Participant

    I have had no problem editing the appearance of the forum until I tried to change the background color of the current navigation link on the user details page… its the list of link including profile, topics started, replies created, etc…

    I have been editing it with the ‘custom css’ feature of my theme… this is what I added

    #bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a {
    background-color: #12681A;
    }

    I grabbed that code from the ‘inspector’ tool using F12 in my browser… just changed the color code… but is not affecting the page…

    any suggestions why this particular element isn’t being affected?

    wordpress 4.22
    bbPress 2.5.7
    http://hillberryfestival.com/forums/user/dhp/

    #162751

    Topic: widget hover color

    in forum Showcase
    projectprince
    Participant

    WordPress 4.2.2 Avada v3.7.4 bbpress Version 2.5.7
    http://www.haltoninfo.org.uk

    I would like the hover colour for all the text links to be in red.
    I have added the following to the custom CSS box:
    a:hover{color:red; !important;}
    This does not work in my sidebar.
    It works for the bbpress login widget, but not for Forum List, Recent Topics or Recent Replies widgets.
    Please can you tell me what CSS code to use.

    hammed4real101
    Participant

    Hi Everyone,

    Please, i want to make my wordpress site a forum website. so, have decided to use bbpress.

    And i want my forum to look exactly like this forum (styling and everything)

    So, have decided to use a template file.

    So, can somebody help me with the php code and css code to make my forum look exactly like this one.

    Thanks in anticipation.

Viewing 25 results - 776 through 800 (of 2,719 total)
Skip to toolbar