Search Results for 'bbpress'
-
Search Results
-
Topic: Style pack doesn’t work
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
Topic: change forum post author
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/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/
Topic: My new BBPress forum site
Hi there!
Check it out my new BBPress forum site with customs design and codes:
Cheers!
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.Topic: Development bbpress
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 numberWhy is the script not redeveloped in order to meet the needs of many users of Warbers?
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.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 ?
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 madeWe 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
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 pleaseThanks
Topic: API related question
Hi,
We are building a mobile app that will utilizes the bbPress for its core function.
We are looking for an API that will allow the user to do 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 madeCan you point us to the API if there is any, or the documentation that will help us create the API? Thank you so much.
Hi
This is a major issue with bbpress and I could not find a resolution to it. I found couple of similar requests but no one have full resolution.
Basically, if page can be recognized as is_bbpress() true than the footer shortcodes breaks.
How to fix that? Is there some patch?