Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 3,801 through 3,825 (of 64,515 total)
  • Author
    Search Results
  • #216545
    kjah456
    Participant

    Hi Experts,

    I could not find an answer to my question in other topics – correct me if I there was already an issue like that.
    I’m using

    • WordPress 5.3.4
    • BuddyPress 6.3.0
    • bbPress 2.6.5

    …with some other plugins I already deactivated (without solcing my problem). Please let me know if you need information about them as well.

    Problem: The notification within the Webpage is always just “bbp_new_reply” “sometime ago”. It is not linked/ specified.
    Do you have an idea where this comes from? Maybe someone else already had such an issue?

    Even when I click the notification I receive via email, it leads me to the main page only.

    Thanks a lot!

    #216535
    cinnamonswirl
    Participant

    Ohh other plugins that was the culprit. I had installed bbPress Toolbox, which had checked an option to notify of new topics. Hopefully that was the setting causing this!

    Thanks.

    #216514
    Gunilla
    Participant

    In my forum I have set bbPress to show 30 subjects on each page. When there are 32 subjects and I click on page 2 I get a 404-page. How do I get page 2 with another 30 subjects?
    I have WordPress 5.2.2 and bbPress 2.6.6. The site is https://seniornet.se. The forum is only for members and needs login.

    wpturk
    Participant

    “gd bbpress attachments” plugin uses the wp media library. You need to change your plugin.

    #216504
    Robin W
    Moderator

    looking at the site, the style sheet is being loaded, but for instance the browser says it cannot load the image

    #bbpress-forums ul.even {
    background-image: url(“/wp-content/uploads/2020/12/Hintergrund.jpg”);
    }

    It nay be that you need to enter the full url, as you have a /site/ additional directory in there

    #216495
    purityboy83
    Participant

    Hi

    I use
    WordPress + BBPress and Advanced Editor Tools (previously TinyMCE Advanced)

    The classic editor is activated and in use

    Now My site forum
    ——————
    change the line by input the enter key, it operates as a p tag (paragraph)

    change the line by input the shift+enter key, it operates as a br (br /) tag
    ——————

    I would like to use a br tag like this forum.

    my site(forum) is now the br tag only works with shift + enter
    (if input the enter key, it operates as a p tag)

    I want to use the br tag at the line break when I type Enter.

    how to it’s change?

    Best Regards,
    Hyunho

    Robin W
    Moderator

    where stuff is stored is plugin specific – the plugin author decides – so you need to raise a ticket in the upload for bbpress support forum

    neon67
    Participant

    Yes, Image Upload for BBPress now. But it can be any other.

    Q. about redirecting a folder from one place to another.
    Perhaps there is a simple solution with code?

    Robin W
    Moderator

    bbpress doesn’t have ‘BB-users images’ it uses the standard avatars – are you using another plugin to achieve this ?

    neon67
    Participant

    All media are located in the /wp-content /uploads/2019…/03…./ folder and sorted by date. It is convenient for work.
    All BB-users images are uploaded to the /uploads/hm_bbpui/ folder. Available only by FTP and there are no standart edit tools.

    How to sharp a redirect /uploads/hm_bbpui/ to the standart WP-library in admin area?
    Is it possible without additional plugins?

    #216480
    pflanzenoma
    Participant

    Hello,

    I’m very new to bbpress as well as wordpress. Trying to configure a BBS for my friends of exotic plants I have a lot of problems.
    I’m using WP Version 5.6,bbPress Version 2.6.6, main theme ocean wp, and the bbp style pack Version 4.7.0 is installed. But no styling works. Nor the background color nor the text size.

    “No bbpress files have been changed in the theme” and
    “This sentance should have a green background”

    are both green.

    I wish to have Forum/Topic Headers/Footers within bars as shown as No 2 in the picture of the Forum index styling. But there are no bars.

    The provisory URL of the site is

    Hoping for help. Thank you.

    Pflanzenoma

    #216462
    silviach
    Participant

    how do I change some admin forum posts to another user? I am both admin and keymaster.

    WordPress version: 5.5.3–it_IT
    bbPress version: 2.6.6
    site: https://www.durecomemuri.it/forum/wp-admin/

    mllapan
    Participant

    Thanks, but I found this is_bbpress function, and solved it.

    add_filter( 'the_content', 'post_ads_1_paragraph' );
     
    function post_ads_1_paragraph( $content ) {
        $ad_code = '<div class="advert" style="display: none;">Reklama1</div>';
     
        if ( is_single() && ! is_admin() && ! is_bbpress() ) {
            return prefix_insert_after_1nd_paragraph( $ad_code, 1, $content );
        }
    	
        return $content;
    }
      
    function prefix_insert_after_1nd_paragraph( $insertion, $paragraph_id, $content ) {
        $closing_p = '</p>';
        $paragraphs = explode( $closing_p, $content );
        foreach ($paragraphs as $index => $paragraph) {
     
            if ( trim( $paragraph ) ) {
                $paragraphs[$index] .= $closing_p;
            }
     
            if ( $paragraph_id == $index + 1 ) {
                $paragraphs[$index] .= $insertion;
            }
        }
         
        return implode( '', $paragraphs );
    }
    mllapan
    Participant

    I have this function to display advertisement after first paragprah in posts:

    add_filter( 'the_content', 'post_ads_1_paragraph' );
     
    function post_ads_1_paragraph( $content ) {
        $ad_code = '<div class="advert" style="display: none;">Reklama1</div>';
     
        if ( is_single() && ! is_admin() ) {
            return prefix_insert_after_1nd_paragraph( $ad_code, 1, $content );
        }
         
        return $content;
    }
      
    function prefix_insert_after_1nd_paragraph( $insertion, $paragraph_id, $content ) {
        $closing_p = '</p>';
        $paragraphs = explode( $closing_p, $content );
        foreach ($paragraphs as $index => $paragraph) {
     
            if ( trim( $paragraph ) ) {
                $paragraphs[$index] .= $closing_p;
            }
     
            if ( $paragraph_id == $index + 1 ) {
                $paragraphs[$index] .= $insertion;
            }
        }
         
        return implode( '', $paragraphs );
    }

    The problem is that this function is somehow hooked to bbpress forum listing (forum description) to, and shows after forum description.
    So how can I remove it from bbpress so it affects only posts?

    See word “reklama1” after each forum description: https://mllapan.com/forumi/forum/magazin/

    #216445
    bolhachefe
    Participant

    Hi there!

    Check it out my new BBPress forum site with customs design and codes:

    https://bolhabrasil.org/

    Cheers!

    #216432
    Earl_D
    Participant

    I have bbpress and buddypress installed the buddypress community is restricted to registered user and had group forums. But I would like the other bbpress forums to be visible and available without registration I set the anonymous option to on but the forms are still only visible to loggged in users.
    Any ideas.

    #216431

    In reply to: Development bbpress

    Robin W
    Moderator

    bbpress is designed to be light weight – indeed the authors say

    We’re keeping things as small and light as possible while still allowing for great add-on features through WordPress’s extensive plugin system.

    That is their choice

    you can through additional plugins do all the above

    #216430
    abdurhman
    Blocked

    Good evening ,,
    How are you doing ..
    The bbpress plugin is considered a beautiful and powerful plugin, but it needs to be developed to be more like a standalone script and at the same time linked with wordpress ..
    Like plugins you need:
    Group system
    Member ranks system
    My profile is unified with wordpress
    Compatibility with the terms of SEO and search engines.
    Attachments system
    Add personal fields with an infinite number

    Why is the script not redeveloped in order to meet the needs of many users of Warbers?

    #216422
    michaelgoal
    Participant

    Hi,
    I want to customize my bbPress forum so that when i have created a new discussion in a specific category, it has to show a “Create Blog post” link in the bottom.
    When i click at this link it has to sent me to the “Create New Post” page.
    Its the “User Blog” plugin that i use.

    BuddyPress User Blog

    It means that the ID and the category for the forum discussion created, has to be sent with the link to the “Create new post” page.
    What i want is that the specific forum discussion can be related to the blogposts.

    When one or more blogs are created relating to a discussion, then a link has to show up, so members can see a page with an overview (links) of blogs related to this discussion.

    Someone who knows if this possibility already exist or can help me to fix it out ?

    #216407
    Robin W
    Moderator

    is_bbpress()

    #216397
    lreyn
    Participant

    Hi @roestru,
    I saw a similar error message with “Image Upload for bbPress” plugin.

    After enabling wp debug turns out i had to fix the permission of the temporary folder this plugin creates:
    “/wp-content/uploads/hm_bbpui_temp”

    after fixing the owner i was able to upload images again.

    #216395
    clmartin22
    Participant

    I didn’t modify them. They are all still setup just like they come in when you install bbpress.

    #216369
    Jing
    Participant

    We have been trying to build a mobile app. It requires an API to handle the following:

    1. Create a new topic,
    2. Reply to a topic,
    3. Subscribe to the forum
    4. Subscribe to a topic
    5. Display the name of the user who created the topic
    6. Display the name of the user who replied to the topic
    7. Delete a topic he created
    8. Delete the reply he created
    9. Edit the topic he created
    10.Edit the replies he made

    We have been testing this plugin: https://wordpress.org/plugins/bbp-api/

    Not only was it old, it does not handle any function related to “write” functions. For example, we can pull out the bbPress info (Read), but we could not use this API to create topics or submit a reply.

    With this limitation, it is hard to imagine people will stick with bbPress as mobile becomes more crucial.

    Yes, we could create custom solutions using WP REST API, but this is not ideal for bbPress. And more important, we could not find the latest documentation.

    Please address this gap or if there is already a recommended solution, help as many people know about it as possible.

    Jing

    #216356
    npi2020
    Participant

    Hi,
    I have installed WPLMS and BBpress BUT I don’t see Forum, Topics or replay option anywhere in my WordPress dashboard. I did deactivate BBpress and activate it again but it still same issue. Can someone help me please

    Thanks

    #216341
    Robin W
    Moderator

    ok, just tested and my original code works fine on my test site.

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

Viewing 25 results - 3,801 through 3,825 (of 64,515 total)
Skip to toolbar