Skip to:
Content
Pages
Categories
Search
Top
Bottom

how to change line break tag

Published on December 23rd, 2020 by purityboy83

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

private forum that people can post on

Published on December 22nd, 2020 by roz7

Hey, I am currently making a forum and trying to make it so users can create new topics, but can’t read ANY of the posts but the official posts by forum Moderators.
So, forum moderators can see other’s posts and admin’s posts, normal users can see only admin’s posts and their own posts.
Thank you

Elementor and bbPress Integration

Published on December 21st, 2020 by philipjking1991

Hi all,

I’m sure this has been covered off in another topic – if so, please link to it and close off this thread. Relatively new to bbPress, building a site using Elementor. I’m not able to get in to edit the forum pages with Elementor, not able to find the_content function.

Running WordPress 5.6, bbPress 2.6.6, and Elementor 3.0.15. Site is https://www.napeersupporters.com, running Astra theme

First Post of Forum Topic On Page

Published on December 21st, 2020 by erich199

I was curious if anyone has or knows of any function or shortcode that I can use that pulls the first topic from a specific forum and shows it on a page?

@robin-w , does your bbpress shortcode plugin do this?

I basically want to create a section on my homepage called “Announcements” and have the latest two topics from my forums with the Title and an excerpt from the post body included.

Problem with Elementor Theme Builder

Published on December 21st, 2020 by maxlevel

I am not sure if this is more of an Elementor or a bbPress related problem.

I try to create a page template for bbPress pages in Elementor Theme Builder.
It only works for forum pages (the page where the topics of a forum are listed) but not for the page that appears when I click a specific topic (where replies are listed and the actual discussion takes place) and also not for the forum search results page.

It seems like the Elementor Theme Builder only replaces one kind of a page (or custom post?) template of bbPress but not all of them. As I do not fully understand how bbPress is organized in regards to different page templates I think I cannot ask the most useful questions to Elementor support or forum.

I tried lots of different display conditions but found no way to create a page template for this kind of pages. maybe somebody here has the same problem and found a solution or can help me to explain better what could be the problem?

how is a topic related to its category in database

Published on December 20th, 2020 by michaelgoal

Hi,
I cant figure out how a topic is related to its category in wp database.

I know for WP blog posts its Object id (post id) and term id (category)
But for bbPress topics i cant find the connection in database.
Can someone help me ?

Thank you bbPress <3

Published on December 20th, 2020 by defiance12

I just wanted to say a BIG thank you to @johnjamesjacoby and the rest of the fabulous team for creating and maintaining this excellent free forum software! My forums at https://nerdpunk.com.au/forum/cyberpunk-2077/ look and function better than I could have possibly dreamed. They are super fast and responsive and with the support of the community with the various plugins available, the customizations that you can do with bbPress is almost limitless!

Also, I wanted to shout out @robin-w, his bbp style pack plugin is fantastic. I have performed many custom css improvements with this addon, and I see him posting regularly on these forums assisting others. A big thank you to you sir!

One request, if you guys deem my forums to be on par with the other forums showcased at https://bbpress.org/about/examples I’d appreciate a link to my forums their too, so other potential users can see what this great open-source forum can do 🙂

Display links in the content to members only

Published on December 19th, 2020 by yt

Hello

I want a code to use in the function file of bbPress to hide all links in the content of forum’s topics and replies for visitors.

I mean until a visitor is not logged in the forum, instead of displaying links, it shows a text message like “displaying links to members only” and a registration link to register and enter his account so that redirects to the last page in the topic or reply.

Additional Explanation:

I Use the code below:

add_filter( 'the_content', 'content_link_for_user_snippets', 1 );
 
function content_link_for_user_snippets( $content = '' ) {
    // Snippets.ir
    if( ! is_user_logged_in() ) {
        preg_match_all( "#<a(.*?)>(.*?)#i", $content, $matches );
        $num = count( $matches[0] );
        for( $i = 0; $i < $num; $i++ ) {
            $content = str_replace( $matches[0][ $i ], '<a href="' . ( get_permalink() ) . '"><span style="color:#F00;">[displaying links to members only]<span></a>', $content );
        }
    }
 
    return $content;
}

in My site’s Theme and word very nice but it doesn’t have any effect in form and couldn’t use it in bbPress function’ file.

Error messages are out of sight

Published on December 18th, 2020 by wpturk

When a user forgets to fill a field or makes a mistake on the topic form, the page reloads and error messages are at the bottom of the page. One has to scroll down to see them. Any workaround for this?

How to set reply form under the message

Published on December 17th, 2020 by zamzey

Dear friends, i would approciate if someone can help.
I want that reply form was shound directly under the message user wants to reply. (now if u click on reply, its scrolling at the end of the page).
Thank you.

Skip to toolbar