Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 26,901 through 26,925 (of 64,540 total)
  • Author
    Search Results
  • windaub
    Participant

    Hi!
    I’m running WordPress 3.5.1 with BBPress 2.2.4.
    I’ve got a problem:
    as a moderator or even a keymaster in bbpress, and Subscriber in WordPress(which I’d like not to change), I don’t have access to the WordPress admin panel to Add forum or Delete forum. In the admin panel I only have “New – Topic” Or “Reply”. The only way I can add a forum is creating a specific page with the add forum shortcode, and there is no way to delete a forum. Would you have an idea for me? Thank you!

    #127555
    Bryan Eggers
    Participant

    Unfortunately, writing some custom code is beyond me.  The question is, is bbPress converting the username or is it WP?

    I just tried creating a user called “1 2 3” directly through WP and it converted the usersname to “1-2-3”.

    Creating a username is pretty much the first interaction that people have with bbPress and the way it’s set up now there’s a highly probability of a problem. Even if they try to use a name like “John Smith” it’s not going to work. They’ll be unable to log in and most likely will give up and go away.

    #127549
    Lynq
    Participant

    Depending on where they are you will want to remove them with CSS something like…

    #bbpress-forums li { list-style-type:none; }

    Lynq
    Participant

    Yes, sorry I was originally using drupal for EpicWebs.co.uk and I didn’t get on with it very well for what is essentially a blog, so I am redoing it in wordpress.

    The best link is github: https://github.com/EpicWebs/bbPress-starter-theme-epicwebs

    #127544
    Stephen Edgar
    Keymaster

    What did you use for the ‘Table Prefix’?

    The default for bbPress 1.x is `bb_`

    You can find that either with phpMyAdmin or from bb-config.php in your bbPress install folder.

    `$bb_table_prefix = ‘bb_’;`

    #127541

    In reply to: Speeling Mistakes

    Stephen Edgar
    Keymaster

    Did you intentionally misspell the title of your post? 🙂

    That said, this is not a bbPress issue, I think you will find it is an attachment plugin you’re using.

    #127540
    jpanizzoli
    Participant

    To upgrade to the newest version of BBPRESS, I added a fresh install of WordPress and included the BBPRESS plugin. I followed all the instructions to import my old bbPress1 (1.1) posts (Tools > Forums > Import Forums), but I get the following error:

    `
    WordPress database error: [Table ‘database_name.forumusers’ doesn’t exist]
    SELECT convert(users.ID USING “utf8”) AS ID,convert(users.user_pass USING “utf8”) AS user_pass,convert(users.user_login USING “utf8”) AS user_login,convert(users.user_nicename USING “utf8”) AS user_nicename,convert(users.user_email USING “utf8”) AS user_email,convert(users.user_url USING “utf8”) AS user_url,convert(users.user_registered USING “utf8”) AS user_registered,convert(users.user_status USING “utf8”) AS user_status,convert(users.display_name USING “utf8”) AS display_name FROM forumusers AS users LIMIT 0, 100
    `

    I know I have the correct database information (name, user, pass, etc.), but I can’t get it to work. Please help! Thanks in advance..

    #127538
    MarjoriesDaughter
    Participant

    I have a client who would like to keep participants from creating new topics. I have checked out the file bbp-core-caps.php, but when it comes to giving Participants capabilities, the code is
    // bbPress Participant Role
    case bbp_get_participant_role()
    instead of defining the capabilities list like it does for Adminstrator, Moderator and default.

    I could use a clue where to go to shut off the topic creation capability for participants.

    Thank you!

    #127537

    In reply to: Month is in English

    Stephen Edgar
    Keymaster

    What versions of WordPress & bbPress are you using?

    #127536
    Stephen Edgar
    Keymaster

    Details how to setup bbPress in your local language are here:
    https://codex.bbpress.org/bbpress-in-your-language/

    #127534
    prokoudine
    Participant

    Hi,

    Are there some kind of best practices re moving content between two installations of WordPress/bbPress with matching versions?

    Let’s say I need to move users and their bbPress posts from one host to another. Naturally, I’d go for WXR. Except it doesn’t work exactly as expected.

    After importing all users, forums, topics and replies I get a forum where all counts are correct, but content isn’t displayed (“This forum is empty.”, “Oh bother! No topics were found here!”).

    OK, I’ve seen that before with other engines where I need to recreate indices. So I go to forum repair, but as soon I click “Recalculate last activity in each topic and forum”, all counts go to zero, and “Freshness” for each forum becomes “No Topics”. No matter what repairs I run next, all counts are at zero.

    In the admin console the list of topics is blank indeed, but all replies are listed and not assigned to any topic.

    Obviously, I’m not the first person to try doing this. How did you solve that?

    Or maybe there’s a better way to merge databases?

    Both hosts have WordPress 3.5.1 and bbPress 2.2.4. Recipient host has WordPress Importer 0.6.

    Thanks in advance.

    #127524

    In reply to: Advertising

    zilveer
    Participant

    As @johnjamesjacoby mention above bbPress doesn NOT come with any advertising.
    Please check the plugins/themes you have installed and disable the banners.

    zilveer
    Participant

    The links doesnt work for me.
    Can you please paste the working ones here?

    #127522
    zilveer
    Participant

    As @xmasons mentioned above you could use the plugin
    https://wordpress.org/extend/plugins/bbpress-unread-posts/
    for that purpose.
    YOu can set the background image for the unread posts and put there an icon.
    Do you have CSS knowledge?
    regards

    #127521
    xmasons
    Participant

    Perhaps this is what you require – bbPress Unread Posts

    https://wordpress.org/extend/plugins/bbpress-unread-posts/

    akgt
    Participant

    Turns out i was installing in the wrong place,

    I’ve just installed on bp 1.7beta & bbpres and it works.

    akgt
    Participant

    Turns out i was installing in the wrong place,

    I’ve just installed on bp 1.7beta & bbpres and it works.

    #127514
    BenRacicot
    Participant

    Hello, After months of going back and forth I think I’ve come to understand why BBP doesn’t work in the theme I’m using.
    The Author has a pre_get_posts function defining how posts get queried. While this is necessary for the theme it’s ruining BBPress (which won’t display it’s topics unless the pre_get_posts filter is commented out)

    `if(!is_admin()) {
    //if ( ‘forum’ != get_post_type() ) { //conditionals WILL NOT work to stop the filter here…
    add_filter(‘pre_get_posts’, ‘query_post_type’);
    //}

    function query_post_type($query) {
    global $oswcPostTypes;

    if(empty( $query->query_vars[‘suppress_filters’] ) ) {
    $post_type = get_query_var(‘post_type’);
    //get theme options
    global $oswc_reviews;
    if($post_type) {
    $post_type = $post_type;
    $query->set(‘post_type’,$post_type);
    return $query;
    } elseif(!is_page() && !is_preview() && !is_attachment() && !is_search()) {
    $post_type = array(‘post’);
    foreach($oswcPostTypes->postTypes as $postType){
    array_push($post_type, $postType->id);
    }
    $query->set(‘post_type’,$post_type);
    return $query;
    }
    }
    }
    }`

    Could someone help me understand what options I have since I cannot conditionally fire that pre_get_posts function and it’s breaking BBPress?

    akgt
    Participant

    I hadd the following error installing on wp 3.5 and buddypress 1.7 The package could not be installed. The theme is missing the style.css stylesheet.

    akgt
    Participant

    I tried your the in buddypress but i get the following error

    The package could not be installed. The theme is missing the style.css stylesheet.

    #127509
    rengith
    Participant

    Hi,
    I install the plugin bbPress and thru widget in side bar, but when i am accessing the page the error is coming “500 – Internal server error”

    Version 2.2.4
    http://traderbus.com/traderbus/ (side you can see “general”)

    thank you

    #127463

    In reply to: Advertising

    bbPress doesn’t come with any advertisements. Can’t tell if this topic is spam or not, since it doesn’t include any details.

    #127377
    e-commerce-concept
    Participant

    Hello,

    I have WP 3.51 and bbpress 2.2.4 and i have download the 2 files for translate in French :
    bbpress-fr_FR.mo et .po and i put in the sub-directori : wp-content/languages/bbpress with th good permissions.

    And no French in BO or in FO ?

    Can you help me ?

    http://chapeau-caussade.fr – user:fany pssw:calista

    thank you
    Patrick

    Bryan Eggers
    Participant

    It’s not a very good sign to potential users that the main bbPress site has no control over spammers and gets three pages of spam every night. How about installing Akismet or one of the other spam-blockers?

    #126898
    Yakir Gottesman
    Participant

    Hi,

    I am using bbpress in Hebrew. In my forum’s topics the month’s name is written in English and not Hebrew. I searched the po files and couldn’t find anything. Can anyone help?

    And something else: how can I change the word “Forums” on the top of the attached image?

    Thanks.

    Month bug

Viewing 25 results - 26,901 through 26,925 (of 64,540 total)
Skip to toolbar