Skip to:
Content
Pages
Categories
Search
Top
Bottom

Introduction

Published on December 8th, 2020 by mariaporter

Hello, all this is Maria. I’m glad to be part of this community, hope to discover and share some interesting discussions ๐Ÿ˜Š

change forum post author

Published on December 7th, 2020 by silviach

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/

How do I remove the_content and is_single advertisement from bbpress?

Published on December 7th, 2020 by mllapan

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/

Order, sequence

Published on December 7th, 2020 by Gunivortus

I’m sorry, I do not understand the documentation.

The forum site I’m trying to set up will have lots of forums.For example, a forum ‘Plants’. Below this, there has to come many sub-forums with different families of plants. Similar to the picture at
What is the order to build up this? What do I have to create first, second, …

Change layout

Published on December 7th, 2020 by Gunivortus

How can I change the layout to get my forum site similar to that of the attached picture?My forum should become a similar layout

Converting links to digital links

Published on December 7th, 2020 by ABDURHMAN

Hello
I want a way to shorten the links, forums, topics, and responses
Example :

ุงู„ุขู†ู…ูŠ ุงู„ุนุงู…


to
https://www.anime-network.org/forum/811/

My new BBPress forum site

Published on December 7th, 2020 by bolhachefe

Hi there!

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

https://bolhabrasil.org/

Cheers!

Bbpress and buddypress forums coexist

Published on December 6th, 2020 by Earl_D

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.

Development bbpress

Published on December 6th, 2020 by ABDURHMAN

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?

How to link forum post with blog post

Published on December 5th, 2020 by michaelgoal

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 ?

Skip to toolbar