Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 5,151 through 5,175 (of 64,310 total)
  • Author
    Search Results
  • #206647
    brownbagmarketing
    Participant

    Added this to my theme functions file:

    // Adding function to block page content for any pages containing bbpress shortcodes.
    add_filter(‘mepr-pre-run-rule-content’, ‘do_block_the_content’, 99, 3);

    function do_block_the_content($block, $current_post, $uri) {
    $block = 1;
    return $block;
    }
    It seems to be doing what I want, but we’ll see.

    #206645
    Theme Arile
    Participant

    Hi bbpress

    I have using the bbpress plugin on our site for support forum . But i can not get any notification on the mail and also our customers did not get notification mail.

    I have get the address not found error in the mail.

    See the screenshot http://prntscr.com/q6pboe

    Please help us solved the issue.

    Thanks

    rhysedwards
    Participant

    I have created a theme, and installed bbPress. I followed the getting started instructions in the documentation, and added the [bbp-forum-index] shortcode to my forum page.

    Under my theme, no forum appears, nothing at all. However if I activate a default theme the forum shows.

    How do I add a forum to a wordpress theme that i created? I couldn’t seem to find anything on the internet to help with that part.

    Many thanks

    WordPress 5.2.4
    bbPress Version 2.6.2

    #206634
    neohack
    Participant

    I’m having an issue with links instead of it being keebu.com/forums/dommains there is a double forum listing as seen below!! i’m new guys to bbpress I’m using the latest install of
    wordpress 5.3
    bbpress 2.6.2
    buddyPress 5.0.0

    https://keebu.com/forums/forum/domains/

    #206632
    brownbagmarketing
    Participant

    I have the exact same issue.
    Any page that has a bbpress forum shortcode on it, the memberpress login does not appear on it and the forum does, even if the user is not logged in.

    #206631
    yarnboy
    Participant

    I ended up going about this another way. My client wanted all forum pages to be inaccessible to anyone without the ‘member’ role, so I used Buddypress-specific checks, instead of syncing bbPress roles with WP roles.

    #206600
    tapiohuuhaa
    Participant

    img.avatar {
    display : none ;
    }

    You must define selector before img.avatar
    For topic list:
    body.single-forum #bbpress-forums img.avatar
    body.bbp-view #bbpress-forums img.avatar

    For forum list:
    body.forum-archive #bbpress-forums img.avatar

    yarnboy
    Participant

    I am trying to set up a way to manage the members listing on a client site. It appears that once a user has a bbPress role of “participant” they will always appear on the members list. I have tried removing them in a few different ways:

    • Changing their bbPress role to “blocked”
    • Removing their bbPress role entirely
    • Removing their bbPress role and ALL of their WordPress roles

    None of these items worked. The ONLY thing that worked was deleting their account from my client’s WordPress site entirely. This isn’t a great solution, for a number of obvious reasons. Does anyone have a solution for this?

    yarnboy
    Participant

    I am working on a site that uses CiviCRM to manage its membership base and bbPress to run forums. Users who are in good standing (i.e. have paid their fees) have a WP role of ‘member’. They lose this role if their membership lapses. I am looking for a way to change their bbPress role to ‘blocked’ when this occurs, I don’t see a way to do this, other than writing a custom cron job. This seems like something lots of people would like to be able to do, so I’m wondering if there’s a way that I’m just not seeing.

    #206589
    webmasterfreya
    Participant

    No replies for 17 months 🙁

    Some thoughts:

    Also the notification emails contain a wrong link (highest page number instead of first)

    Sends notification emails for new replies to subscribed topics
    \wp-content\plugins\bbpress\includes\common\functions.php

    1061 function bbp_notify_topic_subscribers

    1101 $reply_url = bbp_get_reply_url( $reply_id );

    if the order =’DESC’ for replies maybe then use bbp_get_topic_permalink as $reply_url ?

    As mentioned above after adding a new reply to a topic one should also be redirected to the first page (bbp_get_topic_permalink ?)

    Probably there are some more places where the same should apply.

    #206583
    Chuckie
    Participant

    I have done php. Actually wrote a website a few years ago that worked with a my-sql database. I also did a backend which was a Microsoft Visual C++ standalone executable that had access to the database for managing content. The site is not live any more.

    My struggles are with debugging. It is not like Visual C++ when I can run through it step by step.

    And there is the basic mechanics of how the whole thing works. No manuals with details information about bbPress mechanics.

    So I already have a good knowledge but I am leading myself blind with it and I don’t like that …!

    #206580
    Pascal Casier
    Moderator

    I can confirm that 1.5 was the last version of that product from what it seems and that no further development is done (technical talk: even the /trunk folder is missing so no updates could happen anymore). The plugin is now marked correctly: https://wordpress.org/plugins/bbpress-improved-statistics-users-online/

    #206577
    wilc097
    Participant

    Unfortunately my custom css-file is still not working after the update to bbpress 2.6 (2.6.2). I’ve put the custom bbpress.css file in my child theme directory in a folder called ‘css’. Are any of the links changed w.r.t. previous wordpress versions?

    #206573
    Chuckie
    Participant

    I originally asked this issue here:

    https://wordpress.org/support/topic/user-cant-view-their-profile/

    I have now found out why it happens. It has to do with the Title Case of the user name. For example, if my user name is:

    Test123

    Then I will not be able to view my profile.

    But if my user name is:

    test123

    I can view my profile.

    I don’t know if this is a bbPress 2.6.2 bug or bbp style pack bug (since I am using the latter theme templates).

    For some reason the administrator can view these profile pages despite the case issue. But not normal participants. I notice that the URL is always the lowercase slug. Are we somehow using the username rather than the nice name? Either way, this is the cause and it means many of my users can’t view their profiles as they have used Title Case in many instances.

    #206565
    Pascal Casier
    Moderator

    @maksansem @BenM :
    Success: Language pack for fr_FR generated for version 2.6.2.

    For bbPress Toolkit, well more stuff is now inside 2.6 so I would need to check what is still really needed.

    #206547
    jrv123
    Participant

    Try a permanent fix to the code…
    Make the fix to line #18 of reply.js (see https://bbpress.org/forums/topic/threaded-replies-not-working/)
    All of a sudden, creating replies to replies started adding ‘_bbp_reply_to’ items to the ‘postmeta’ table, where that key has the value of the row to which the reply is being created.
    Nested/indented replies suddenly started doing their thing; i.e., indenting to the level of reply-to-reply they are.

    #206542
    Chuckie
    Participant

    See:

    Freshness doesn’t seem to update as quickly any more?

    Towards the end there is a plugin that has temporarily been created to workaround the freshness issue.

    #206541
    Chuckie
    Participant
    #206540
    Robin W
    Moderator
    #206538
    Robin W
    Moderator

    all I can tell you is that bbpress doe not have the term ‘flagged’ in it.
    maybe ask in then buddypress support forum

    BuddyPress

    #206537
    CGC studio
    Participant

    as you can see, the subjet is: “my french site’s name” moderation: Flagged topic
    and body text: A new topic has been flagged for moderation with following datafields : user, topic and content (in french)
    it really seems to come from BBpress, dont’t you think?
    CGC

    #206536
    CGC studio
    Participant

    I use one-community theme along with buddypress and bbpress all together
    but the notification email I’m talking about deals with forum moderation so I really think it concerns BBpress
    see screenshot : screenshot of notification email
    : )
    CGC

    #206535
    Chuckie
    Participant

    I have only just noticed this. I use the “bbPress Advanced Statistics” plugin as I like the way it presents the data at the bottom on the forum page.

    However, if I “log out”, it still lists all the names of the users from the last 24 hours. That is not right. It should only list last 24 forum activity if a user is logged in. Technically it is exposing users names for a non logged in user when I don’t want it to.

    I am using latest bbPress 2.6.2

    Any advice appreciated. Thanks.

    #206534
    Robin W
    Moderator

    I cannot see ‘flagged’ as a term in bbpress.

    what other plugins are you running ?

    #206532
    Robin W
    Moderator

    I think this is not part of bbpress, but instead a plugin that is additional to bbpress?

Viewing 25 results - 5,151 through 5,175 (of 64,310 total)
Skip to toolbar