Search Results for 'bbpress'
-
Search Results
-
When I upgraded to bbPress 2.6.0, the links in my forums (e.g. topic names, links in posts) don’t show up underlined any more like they used to. So they’re not obviously links any more, which seems to be a usability issue. This is with WordPress 5.3.
I haven’t changed anything to do with the theme/appearance.
When I upgraded to bbPress 2.6.0, the links in my forums (e.g. topic names, links in posts) don’t show up underlined any more like they used to. So they’re not obviously links any more, which seems to be a usability issue.
I haven’t changed anything to do with the theme/appearance.
The new bbPress 2.6.0 update implemented yesterday breaks the forum index displayed with the [bbp-forum-index] shortcode.
1. The above shortcode used to display two levels, not one on bbpress 2.5.14 before the update.
2. The problem happens on three different sites, so it is not a plugin compatibility issue.
3. The problem was reported during the 2.6.0 development cycle but ignored:
https://wordpress.org/support/topic/subforums-not-showing-after-upgrade-from-2-6rc5-to-2-6rc7/4. The forums that are displayed are and always have been propertly set to display two levels in the index:
Showing parent forums and subforums (categories) in forum root: How?
What I would recommend is modifying bbpress to implement a parameter after the [bbp-forum-index] shortcode such as “showlevels=1-2” or the like. That way users can control how many levels of the hierarchy are displayed in the index.
This is clearly a bug in 2.6.0 that needs to be fixed. When will it be fixed?
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
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.
What on earth happened?
I’ve never had BBpress break on wordpress update in 7 years.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 222here’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];
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.
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');
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
Topic: Installing a forum wp 5.3
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.Topic: 2 issues with latest release
1) My site is in italian, and BBpress was obviously in italian. Now some words or sentences are in english and others are in italian. A sort of mash-up (latest replies widget, and other elements). ANything to do?
2) in mobile view, the username in the replies are partially covered from the previous reply.
Many pages with bbpress forums cannot use their national texts because there is no accepted translation. In the forum settings there should be assumptions where you can enter the forum entries yourself, for example: new topic, reply, newest, etc.
Also, there should be an option to pay out these beams with a description of how many votes are on a given topic (WHO’S WHOM FOR WHOM), and how many posts are in the topic and who last gave, it should also be to choose whether you want to see it.
My site in Polish but is displayed in large numbers in English language because there is no transaction that awaits for years to be approved https://infomiasto.eu/forum/tematy/rozmowy/ so you would write the right words yourself.