Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 2,551 through 2,575 (of 6,789 total)
  • Author
    Search Results
  • #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.

    #157643

    In reply to: Searching

    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

    #157635
    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

    #157630
    Nicolas Korobochkin
    Participant

    I’m also stopped recive the notifications by email after update… to 2.5.4 (not sure about version). This happens because new bbPress send one email to all subscribed people. I publish the solutions for another issue few weeks ago https://bbpress.org/forums/topic/hook-to-bbpress-notifications/#post-156426 but it also the solution for your issue.

    In few words about my code:

    1. Disable default bbPress notifications (one email per all users).
    2. Add similar notifications but it sends one email per user and WordPress send it by using cron (not immediately).

    P. S. I’m also using WP SMTP plugin to send email throw external SMTP server.

    #157624
    Ryan
    Participant

    It looks like there are possibly 2 issues being reported here.

    One issue reported by the OP is that emails are not working properly. Another being that people aren’t being notified due to the subscribe checkboxes not actually being checked by default causing people to become unsubscribed when they post replies to topics they were previously subscribed to.

    The first issue with emails sounds like it could be conflicts with themes or plugins. However if it is actually an email issue it could also be that the emails from the server aren’t being properly sent or received which could be for a number of reasons such as bad DNS records or improper mail server configuration.

    The second issue is that when posting topics or replies the subscription checkboxes are not checked by default. This is described above by Killerrabbit2 here in this post: https://bbpress.org/forums/topic/email-notifications-not-working-looking-for-help/#post-153189

    I think if bbpress added an option to set the default state of the checkboxes to allow the subscription checkboxes to be checked or unchecked with the default being checked would be part of the solution for the second issue.

    You can set the default setting to be checked by editing the bbpress template files /wp-content/plugins/bbpress/templates/default/bbpress/form-topic.php and /wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php and finding the subscription input checkboxes and adding checked to them seems to fix part of it.

    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe" checked tabindex="<?php bbp_tab_index(); ?>" />

    Another issue seems to be that it doesn’t subscribe to topics within a forum when subscribing to an entire forum. So for example if you subscribe to a forum and a topic isn’t checked within that forum (which is how bbpress is currently set by default since it doesn’t subscribe to things by default) then it won’t notify you of new replies. Kind of defeats the purpose of subscribing to an entire forum I think. So if you subscribe or unsubscribe to an entire forum it should subscribe or unsubscribe all posts within that forum at that time. I haven’t tried adding code to fix this yet.

    I suspect some bbpress templates could actually do this stuff for the second issue properly. Not sure if people even release new ones ever or not. It’s also possible that some themes could potentially already have their own bbpress templates which potentially could be broken or outdated causing issues.

    #157623
    andreippo
    Participant

    @Killerrabbit2

    I did contact Robin, his response:

    “The only fixes (http://www.rewweb.co.uk/reply-subscribed/

    http://www.rewweb.co.uk/topic-subscribe/) I have are the ones in the original email.

    If emails are coming from wordpress, then they should be ok from bbpress.

    Do you have any plugins that could be causing conflict, or maybe your theme.

    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.”

    Did anyone solve this?

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