Skip to:
Content
Pages
Categories
Search
Top
Bottom

Moderation problem with replies/topics

Published on November 14th, 2019 by creativersis

Hi everyone. I was wondering if anyone else is having this problem and how did you solve it. We have bbpress on the website and we (used to) hold for moderation only topics, but all the replies could go through. Now, with the latest bbpress update replies are also held for moderation even though only topics are selected in settings. Any clues on how to fix this? Thank you

Preview Post

Published on November 14th, 2019 by jppf08

Hello

Many users of my website have been requesting the ability to preview their post before submitting them. It would be nice to see this feature!

WordPress Automatic update to 5.3 broke BBPress showing any threads

Published on November 14th, 2019 by Tom

WordPress automatically updated to 5.3 and broke the forums showing any threads/forums, the title still shows for the forum you are trying to show.

https://piratemc.com/forums/

PirateCraft Server Updates

Request to remove claims

What on earth happened?
I’ve never had BBpress break on wordpress update in 7 years.

Call to undefined function bbp_get_version()

Published on November 14th, 2019 by agrolsy

after upgrading from 2.6 rc 5 to 2.6 one of my plugins stopped working, with the fatal error Call to undefined function bbp_get_version(). I can’t figure out why, from what I can see that function still exists?

[14-Nov-2019 08:27:11 UTC] PHP Fatal error: Uncaught Error: Call to undefined function bbp_get_version() in /home/woouser/wordpress/wp-content/plugins/wp-courseware-bbpress-addon/wp-courseware-bbpress-addon.php:222
Stack trace:
#0 /home/woouser/wordpress/wp-settings.php(360): include_once()
#1 /home/woouser/wordpress/wp-config.php(92): require_once(‘/home/woouser/w…’)
#2 /home/woouser/wordpress/wp-load.php(37): require_once(‘/home/woouser/w…’)
#3 /home/woouser/wordpress/wp-blog-header.php(13): require_once(‘/home/woouser/w…’)
#4 /home/woouser/wordpress/index.php(17): require(‘/home/woouser/w…’)
#5 {main}
thrown in /home/woouser/wordpress/wp-content/plugins/wp-courseware-bbpress-addon/wp-courseware-bbpress-addon.php on line 222

here’s the code from the plugin


add_theme_support( 'bbpress' );
$pluginroot = plugin_dir_path( __FILE__ ); 
$themeroot = get_template_directory();
	 
$bbpressversion =  bbp_get_version();

$ex_aaa = explode("-", $bbpressversion);
$ex_bbpressversion = $ex_aaa[0];

“No users to import” when attempting to import from latest phpBB

Published on November 13th, 2019 by Hammy Havoc

Hi everybody!

I’m having some problems importing from the latest phpBB into the latest bbPress.

I get the following error:

1. No passwords to clear
2. No users to import

Everything else appears to import as expected.

Visual editor for replies not working

Published on November 13th, 2019 by PDidee

Since the latest update to 2.6.0 I’ve noticed that I am unable to click into the visual editor on replies to posts. Text tab works but the text area for the visual editor isn’t working at all. I can’t click into the space and type anything there. I’m using the following code to use the visual editor…

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

function bbp_tinymce_paste_plain_text( $plugins = array() ) {
$plugins[] = 'paste';
return $plugins;
}
add_filter( 'bbp_get_tiny_mce_plugins', 'bbp_tinymce_paste_plain_text' );

function bavotasan_bbpress_upload_media( $args ) {
$args['media_buttons'] = true;

return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bavotasan_bbpress_upload_media' );

function add_theme_caps() {
$role = get_role( 'subscriber' );
$role->add_cap( 'upload_files' );
}

add_action( 'admin_init', 'add_theme_caps');

Extra tags to add to list for videos

Published on November 13th, 2019 by Chuckie

So I have this code for html tags not showing in topics for non-admin:

// Stop HTML Tags appearing in bbPress posts for non-admin users
add_filter( 'bbp_kses_allowed_tags', 'ntwb_bbpress_custom_kses_allowed_tags' );

function ntwb_bbpress_custom_kses_allowed_tags() {
	return array(

		// Links
		'a'          => array(
			'class'    => true,
			'href'     => true,
			'title'    => true,
			'rel'      => true,
			'class'    => true,
			'target'   => true,
		),

		// Quotes
		'blockquote' => array(
			'cite'     => true,
		),
		
		// Div
		'div' => array(
			'class'     => true,
		),
		
		// Span
		'span'          => array(
			'class'     => true,
			'style'     => true,
		),

		// Paragraph
		'p'          => array(
			'dir'    => true,
			'style'  => true,
		),
		
		// Code
		'code'       => array(),
		'pre'        => array(
		'class'      => true,
		),

		// Formatting
		'em'         => array(),
		'strong'     => array(),
		'del'        => array(
			'datetime' => true,
		),

		// Lists
		'ul'         => array(),
		'ol'         => array(
			'start'    => true,
		),
		'li'         => array(),

		// Images
		'img'        => array(
			'class'    => true,
			'src'      => true,
			'border'   => true,
			'alt'      => true,
			'height'   => true,
			'width'    => true,
		),

		// Tables
		'table'      => array(
			'align'    => true,
			'bgcolor'  => true,
			'border'   => true,
		),
		'tbody'      => array(
			'align'    => true,
			'valign'   => true,
		),
		'td'         => array(
			'align'    => true,
			'valign'   => true,
		),
		'tfoot'      => array(
			'align'    => true,
			'valign'   => true,
		),
		'th'         => array(
			'align'    => true,
			'valign'   => true,
		),
		'thead'      => array(
			'align'    => true,
			'valign'   => true,
		),
		'tr'         => array(
			'align'    => true,
			'valign'   => true,
		)
	);
} 

I need to add some more tags to this list because my topics now support embedded videos. A user did a topic and it shows as:

<video controls=”controls” width=”300″ height=”150″>
<source src=”path; /></video>

What must I add to this tags array for this?

Thanks

Edit Profile Link is not working

Published on November 13th, 2019 by livefree

In using bbstyle pack, when I have it set to have edit profile in the menu, it refers to this link…
/users/*username*/edit
… but I end up with an error page…
“Sorry, This Page Is Gone.
The page you are trying to view no longer exists or has been moved. You may try the search form below to find it.”

I also tried the bbstyle pack shortcode [bsp-profile] and same result as above.

You asked on another thread…
What have you got set for dashboard>settings>forums>forum user slugs>user base ?
It is set to the default… I never changed it…
users

I found an old plugin as a workaround, but I would rather not add another plugin, especially one that is not updated for the past two years…
/plugins/bbp-profile-link-shortcode/

When I use that plugin, it works fine for profile edit… I put their shortcode in a sidebar widget… and it refers to this link…
/users/*username*/
… this link works to reach Profile.

Here is the problem…

I have my wp in a sub folder of the domain, WordPress Address (URL).
And, the Site Address (URL) is the domain root.

bbstyle pack is using the WordPress Address (URL) … adding the folder to the link string … and not the Site Address (URL)…like this…

/domain/folder/users/*username*/edit
… this will not work… “Page is Gone”

/domain/users/*username*/edit
… this works.

Is there a way to change the setting for bbstyle package to use the Site Address (URL) as opposed to the WordPress Address (URL)?

Installing a forum wp 5.3

Published on November 13th, 2019 by graverholt

I am new to this. I have installed bbpress, but I have no idea about what to do next

I click on forum – add new – update

Click view forum and get this message:

404 Not Found
The requested resource was not found on this server.

White lines since update

Published on November 13th, 2019 by kigazw

Hello an thank you!

How do I get these white lines colored in my child-theme?

Image: http://datenerror.de/wordpress/weiss.jpg

Skip to toolbar