Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 2,551 through 2,575 (of 6,794 total)
  • Author
    Search Results
  • #158149
    Robin W
    Moderator

    ok, so

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    find
    wp-content/plugins/bbpress/templates/default/bbpress/user-details.php
    Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/user-details.php

    bbPress will now use this template instead of the original

    Now edit that file so that you add a new line between line 16 & 17 which currently read

    <div id="bbp-single-user-details">
    <div id="bbp-user-avatar">
    
    

    so add

    <h1>  <?php bbp_displayed_user_field( 'display_name' ); ?> </h1>
    
    

    after this line so that you end up with

    <div id="bbp-single-user-details">
    	<h1>  <?php bbp_displayed_user_field( 'display_name' ); ?> </h1>
    	<div id="bbp-user-avatar">
    

    as the three lines.

    and save

    It should now display

    #158117
    BrendenW
    Participant

    Yes. So my site has 3 set sidebars, not including bbPress sidebar when bbPress tweak is activated. These are:
    *default sidebar
    *building sidebar
    *health sidebar
    I can create any page and apply any of these sidebars without issue. As soon as I use the permalink \forums and the forum is used, then no matter which sidebar I select for use on the page, nor whether I use bbPress tweak, only the default sidebar is used.

    I appreciate the help and I will undertake or answer any further questions you have, but not for some time. I’m guessing you guys are based on the US but it’s pretty late here so I best be off. Look forward to nutting this out further in the morning.

    Thanks,
    Brenden.

    #158109
    jakerobbins
    Participant

    Locate the form-anonymous.php file within templates/default/bbpress and remove the following paragraph.

    <p>
    <label for=”bbp_anonymous_website”><?php _e( ‘Website:’, ‘bbpress’ ); ?></label><br />
    <input type=”text” id=”bbp_anonymous_website” value=”<?php bbp_author_url(); ?>” tabindex=”<?php bbp_tab_index(); ?>” size=”40″ name=”bbp_anonymous_website” />
    </p>

    The website field should now disappear 🙂

    #158096
    BrendenW
    Participant

    Hi Guys,

    Sorry in advance as I am going to be a pain in the ass here I bet, as I have very, very limited experience with wordpress or any website building for that matter; however, that’s marginally more than anyone else in my company so I’ve been saddled with the duty of getting it all set up and running.

    Prologue
    I have decided to create a forum and have downloaded bbPress for this. I needed to make certain things private and downloaded bbPress private to help with that. I wanted to make custom sidebars and downloaded bbPress tweak for that feature.

    We had the website made by an external company, they created it on wordpress and created a custom theme with a lot of templates within the themes. Call be cynical, but I think it was to try and squeeze us for every cent by making us come to them for any minor variation.

    Situation
    Despite all my attempts through every simple way I could think of I can not get my forum to show a custom side bar. The forum itself though is set up as I want it and more than workable, it’s just the aesthetics of having the right sidebar.

    Troubleshooting Undertaken
    * I started with all three plugins activated and created my forum and created a page could forums. So the permalink was set up. The sidebar was not what was expected. I have tried using every default template and every sidebar that my site has to no avail. Sidebar stayed exactly the same as it was.
    * I went in to the setting of bbPress Tweak and selected the different .php files, only the bottom 3 were in bold and when I selected the 2nd or 3rd from the bottom nothing happened. When I selected the bottom one, the side bar moved from the side to underneath and the forum went to full screen width.
    * I deactivated bbPress Tweak and tried again, nothing new happened, same old sidebar.
    * I decided to change the permalink away from the slug to see if when it was just a standard page if I could change the sidebar (to try and see if it was a bbPress forum problem or a theme template problem). The sidebar changed to what ever I wished it to be and I could change from sidebar to fullwidth as I pleased.

    Conclusion
    I am left to believe that it must be a problem (problem isn’t the right word) with bbPress loading a specific template/sidebar. I don’t understand why bbPress tweak is not able to overwrite this though?

    Any help would be of great assistance, though as mentioned to begin with, I am very new to all this so you may need to dumb down the help if you can.

    #158090
    elancetopone
    Participant

    I would like to change default order of attachment which are displayed in order of they are uploaded. Can I change it somehow?

    #158088

    In reply to: Oh Brother…

    markf1
    Participant

    so just to be clear and re-cap.

    When I left everything the same, with bbPress.php in my child theme, and the default/unchanged twenty twelve parent theme, then activated the twenty twelve theme – the forum links worked and the problem went away.

    Switch back to child theme and problem resumes.

    Add bbPress.php to Twenty Twelve theme and then activate Twenty Twelve – problem remains.

    thanks for your ongoing help!

    #158057

    In reply to: Oh Brother…

    Robin W
    Moderator

    ok, lets eliminate plugins and themes as the issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back

    #158047
    Robin W
    Moderator

    did you try the theme as suggested above

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    #157991
    Robin W
    Moderator

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back

    #157972
    Robin W
    Moderator

    If you have FTP access then :

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress
    find
    wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php
    Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/form-reply.php
    bbPress will now use this template instead of the original

    then you need to chnage the line

    <?php if ( bbp_current_user_can_access_create_reply_form() ) : ?>
    

    to do a check for keymaster and author

    something like

    <?php if ( bbp_is_user_keymaster())  || bbp_get_reply_author_id() == bbp_get_current_user_id() : ?>
    

    bbp_get_reply_author_id() might need to be bbp_get_topic_author_id() – you’ll need to try it to see

    Give this a go, I’m very short of time at the moment, so haven’t tested !

    #157967
    Robin W
    Moderator

    ok, I’ve had a look.

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back

    #157966

    In reply to: ERROR Author Link

    Robin W
    Moderator

    The link to padelstar works

    the link to EVELYN PADEL just seems to go to another page

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back

    #157952
    deandail
    Participant

    I am having the same problem. I’ll try to be less ranty about it, but it’s definitely frustrating.

    I am importing a forum from a wordpress 4.1/bbPress 2.5.4 install on an old site to a wordpress 4.1/bbPress 2.5.4 on a new site. There’s no way to do this from the Import Forum screen, so I also have done this via the standard WordPress Export/Import tool as suggested.

    In my case, content shows up on the back end, but not on the front end. Also, accessing the Replies page on the back end results in a segmentation fault on the server. Taking these steps with no plugins and default theme has the same results.

    Like the original poster here, I would love to find what is the correct import procedure to just move a bbPress install from one site to another.

    #157909
    Robin W
    Moderator

    ok,

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back

    #157894
    Robin W
    Moderator

    if it’s not a plugin issue viz

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    the it is likely to be a a theme issue

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back

    #157874
    Robin W
    Moderator

    ok, but with default theme twenty fifteen, the user set to participant, and just bbpress the edit will show, so something is affecting this.

    #157869
    krw1243
    Participant

    I’m trying to add BBPress to my WordPress site, but after installation, my forum looks completely unformatted:

    http://fortcollinsmodernquiltguild-fcmqg.rhcloud.com/forums/forum/fort-collins-modern-quilt-guild-forums/

    I’ve tried removing all other plugins that didn’t come with the site, removing and re-adding themes, using the default themes, but it always looks like this. Is it supposed to look like this until I do something? Or is something else messing with what should be some sort of sane default formatting?

    #157805
    Robin W
    Moderator

    ok,

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress
    find
    wp-content/plugins/bbpress/templates/default/bbpress/content-single-forum.php
    Make a copy of this file, 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-single-forum.php
    bbPress will now use this template instead of the original

    then change lines
    <?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?>

    <?php bbp_get_template_part( ‘pagination’, ‘topics’ ); ?>

    <?php bbp_get_template_part( ‘loop’, ‘topics’ ); ?>

    <?php bbp_get_template_part( ‘pagination’, ‘topics’ ); ?>

    <?php bbp_get_template_part( ‘form’, ‘topic’ ); ?>

    <?php elseif ( !bbp_is_forum_category() ) : ?>

    <?php bbp_get_template_part( ‘feedback’, ‘no-topics’ ); ?>

    <?php bbp_get_template_part( ‘form’, ‘topic’ ); ?>

    <?php endif; ?>

    to
    <?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?>

    <?php bbp_get_template_part( ‘pagination’, ‘topics’ ); ?>

    <?php bbp_get_template_part( ‘loop’, ‘topics’ ); ?>

    <?php bbp_get_template_part( ‘pagination’, ‘topics’ ); ?>

    <?php elseif ( !bbp_is_forum_category() ) : ?>

    <?php bbp_get_template_part( ‘feedback’, ‘no-topics’ ); ?>

    <?php endif; ?>

    and save

    that should do it

    #157780
    Robin W
    Moderator

    seems they are helping you on the trac ticket, but first step would be

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back

    #157757
    Robin W
    Moderator

    ok, it’s back to looking at this aspect specifically.

    1. some themes only show the edit when you hover in the topic/reply content, this is theme specific not bbpress.

    2. I know you have already tested the below but please try again as bbpress is tested with default themes. Try twentyten as I know it gives a firm edit box :

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back.

    #157734
    Robin W
    Moderator

    ok,

    create a directory on your theme called ‘bbpress’
    ie wp-content/%your-theme-name%/bbpress
    find
    wp-content/plugins/bbpress/templates/default/bbpress/content-single-forum.php
    Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/%your-theme-name%/bbpress/content-single-forum.php
    bbPress will now use this template instead of the original

    then change lines

    <?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?>
    
    <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    <?php bbp_get_template_part( 'loop',       'topics'    ); ?>
    
    <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    <?php bbp_get_template_part( 'form',       'topic'     ); ?>
    
    <?php elseif ( !bbp_is_forum_category() ) : ?>
    
    <?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
    
    <?php bbp_get_template_part( 'form',       'topic'     ); ?>
    
    <?php endif; ?>
    

    to

    <?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?>
    
    <?php bbp_get_template_part( 'form',       'topic'     ); ?>
    			
    <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    <?php bbp_get_template_part( 'loop',       'topics'    ); ?>
    
    <?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    <?php elseif ( !bbp_is_forum_category() ) : ?>
    
    			
    <?php bbp_get_template_part( 'form',       'topic'     ); ?>
    
    <?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
    
    <?php endif; ?>

    and save

    that should do it

    #157699

    In reply to: PLEASE HELP!

    Seo45
    Participant

    Sorry u might be confusing. There’s 2 different backgrounds. The one that I’m talking about now is the actual background of the tables. The even and odd of the forum. I changed it by putting this in my child theme:

    #bbpress-forums div.odd,
    #bbpress-forums ul.odd {
    background-color: “the color you see”!Important;
    }
    #bbpress-forums div.even,
    #bbpress-forums ul.even {
    background-color:” the color you see”!important;
    }

    I then changed the parts that affect the actual theme through theme options. After doing this, I noticed stuff wasn’t changing back once I put it back to the default color. I then tried changing the code above and it didn’t work anymore. Then I even deleted the code, yet it still didn’t change back to normal.

    The original background was dark I believe. Can’t remember for sure. But now it’s white and a tan, which I set with the code above, but I can’t change it back.

    a298e
    Participant

    Hello.

    I would like to set some letters only in a new topic textarea by default.

    Is it possible?

    #157653

    Topic: PLEASE HELP!

    in forum Troubleshooting
    Seo45
    Participant

    Okay, I’m officially freaking out now. After hearing about it quite a bit, I finally learned how to create a child theme. I did so, and I began adding css related to bbpress with “!important” to change things. After changing a few things, I realized the text color wasn’t going to work, so I went into my theme options, and there is a way to change colors without having to go into code. Luckily, there is a default button, so I can just press that to go back to default. Basically, I changed each one and then refreshed the forum to see if that was it. I finally found it, but I didn’t like what it did to the rest of the site, so I went back to default. Now nothing is changing on the forum, even though everything else is going back to normal in the theme.

    So I then started deleting the changes I made in my child theme .css, and it isn’t changing anything. I even went as far as to go back to my parent theme. This made the forum disappear, so I deactivated it and re-activated it. Well, now it is right back to the one after it was changed. How could it still be changed? I tried deleting it and re installing it, but it still won’t change. How could this have happened?

    Sorry for panicking, but I simply don’t understand how this happened. Thank you for any answers.

Viewing 25 results - 2,551 through 2,575 (of 6,794 total)
Skip to toolbar