Skip to:
Content
Pages
Categories
Search
Top
Bottom

which theme ussed for bbpress.org ?

Published on July 12th, 2022 by quigli

Hello,
well, it’s my turn to equip my sites with bbpress. Bigger and smaller problems are slowly solving. Question: what theme is used for the bbpress site at all. And is there something like a way to create a clone of bbpress.org, with my own content of course. I think this site is very good as a start and also practical for everyday life, because it shows many possibilities what bbpress can do. Therefore: is there something like a standard installation with dummy text? Would be wonderful.
Best regards, Rainer

Clicking on forum takes me to blank page

Published on July 11th, 2022 by elithemiddleagedwitch

WP version 6.0
bbpress version 2.6.9

website: middleagedwitch.com
Forum link: https://middleagedwitch.com/forum/

Greetings! I am admittedly very green, but I’ve read several set-up guides for setting up a bbpress forum and followed the instructions to the letter. Yet when I click on the forum link, it takes me to a blank page. I feel like there’s something very obvious I must be missing but I cannot for the life of me figure out what it could be.

Participants can delete single topic tags by removing them from input field

Published on July 11th, 2022 by ppoirier1995

Hi there,

I’m trying to find a solution to the problem of participants being able to remove single topic tags by simply removing them from the “Tags” input field on the reply-to form.

I’ve found this thread that clearly explains the issue

Topic tags deleted by other participants


and offers a solution that is unfortunately not working on my end.

My form-reply.php currently has this line:
<?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags', bbp_get_topic_id() )) : ?>
which I tried to replace with:
<?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags', bbp_get_topic_id() ) && current_user_can('moderate') ) : ?>
to no avail.

Has anyone solved this issue? Would love some guidance here! 🙂

User user id instead of login in profile url

Published on July 11th, 2022 by coopersita

Is there a way to redirect all profile page links so they use the user id, instead of user login/nicename? Some users have their email as their username, so we want to hide it.

So to go from
/forums/users/{login}

to
/forums/users/{id}

I was able to change the URLs so they point to the right place:

function bbp_custom_author_link(  $url,  $user_id,  $user_nicename){
            $url = site_url()."/forums/users/".$user_id;
	   return $url;
    }
    add_filter( 'bbp_get_user_profile_url', 'bbp_custom_author_link', 10, 3);

But once you click on the link, you end up in a 404.

TinyMCe toolbar customisation

Published on July 11th, 2022 by rinh

Hi,
I’m trying to customise the toolbar in TinyMCE.

Initially I just enabled the advanced one:

function bbp_enable_visual_editor( $args = array() ) {
    $args['tinymce'] = true;
    $args['teeny'] = false;
    $args['quicktags'] = false;
    return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

I thought of adding a button for underline and it led to trying to get only what I needed in one toolbar:

function bbp_enable_visual_editor( $args = array() ) {
  
    $args['tinymce'] = array('toolbar1' => 'formatselect, bold, italic, underline, bullist, numlist, blockquote, alignleft, aligncenter, alignright, link, strikethrough, forecolor, outdent, indent, undo, redo');
    $args['quicktags'] = false;
    $args['teeny'] = true;
    return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

This is causing it to repeat some things in toolbar 2 (as well as the ability to toggle toolbar 2 on and off). I tried adding toolbar 2 to the code above, but then it goes back to default. I could stop there though and just add underline and the tools that’s in toolbar 1 by default, but I’m curious if I can customise things further.

To my question:
Is there a way to add everything in one toolbar and then disable toolbar 2?
Or is there a way to get the toogle for toolbar 2 back when I’ve customised toolbar 1?

I also tried enabling teeny which would’ve worked best, but then I lose the forecolor toolbar box so I’d need a way to add it back.

Thanks in advance

loco-translate

Published on July 11th, 2022 by imzban

I want to translate the plugin name using Loco-translate-plugin.

Backend search not working

Published on July 10th, 2022 by classjapan

hi,Backend search not working

forums,topics,replies are not working.

It shows No replies found even though it definitely exists.

There are 10,000 translations in the forum alone. Is it because there are too many?

How can I solve it?
I am Japan and not good at English. Excuse me.

Bug: broken link in the Last Post column when Akismet installed

Published on July 8th, 2022 by gtatar

In the list of forums, there is a column called “Last Post”. For each forum, this column contains a link to the last topic or reply posted to that forum.

If there was a spam post 2 hours ago (and Akismet puts it in spam), then the “Last Post” column will contain text “2 hours ago” and a link like https://www.example.com/?post_type=topic&p=1759 (where 1759 is ID of the spam post).

Correct behavior would be to link to the latest published post. Anchor text should also reflect when the latest post was published. In my example, if a post got published 5 hours ago; and then a spam post came in 2 hours ago, the anchor text should say “5 hours ago”.

How to connect the WP user profile and the bbPress user profile

Published on July 8th, 2022 by janecarole

I have a WP-Members profile that shows up when a logged-in user chooses “My Profile” from the drop down list on the Home tab on my website:

https://lemonstograpes.com/home

(WordPress 6.0)

I would like the user’s WP profile information to have a link that would take the user to their bbPress Forum profile. I have no idea how to do this (not a programmer).

My current solution is to include the following text at the bottom of the user’s WP-Members profile:

(Note: User Profile information that provides forum related detail is accessed by clicking the picture [avatar] that appears beside a Forum post.)

@mentions for bbpress

Published on July 7th, 2022 by saltywd

Hello All,

I have a forum that is not allowing the @mentions as it will write it in plain text but wont hyperlink it or bring up a populated set of members with what i type in at all. I would like to allow it to gather any user to tag them and receive a notification of a mention of there username. Anything I can do or check for this please? Thanks

Skip to toolbar