Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 5,551 through 5,575 (of 64,471 total)
  • Author
    Search Results
  • #205619

    In reply to: Child CSS

    raydelvec
    Participant

    Same problem. I changed the CSS on my forum about a year ago, uploading the custom styles to Active Theme > css > bbpress.css

    Then upon this latest update, they all reverted back.

    It is fixed when you copy/paste the CSS code from that file into either main style.css or the Appearance > Customize > Additional CSS

    I also use Autoptimize which wraps the bbpress.css code into one file.

    I would like to know what’s causing the issue even though this is a workaround.

    #205617
    creativersis
    Participant

    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

    #205610

    In reply to: Child CSS

    DigitalGdn
    Participant

    Workaround fix:

    My theme’s bbPress custom styles were in bbpress/css/bbpress.css, I have copied the CSS contents into the main style.css and it is ok now.

    #205606

    In reply to: Child CSS

    DigitalGdn
    Participant

    Child CSS has disappeared for me as well. WP and bbPress auto-updated last night.

    #205604

    In reply to: Child CSS

    hydrogriff
    Participant

    @johnjamesjacoby, I can confirm this as well. The following things are broken for me.

    • Child CSS won’t load.
    • Subforums are not listed.

    Love the moderation features though. But still I have to rollback to earlier version to have a functioning forum. What happened this time? Usually production releases come out well-tested by the bbPress team. This is a bit disappointing.

    Tom
    Participant

    I looked at my local dev version of my website, and just updated the plugins without updating to wordpress 5.3 and it broke, so its actually the BBPress plugin itself updating that broke itself?

    Robin W
    Moderator

    I suspect update of bbpress to 2.6 may be the issue – have you updated bbpress as well ?

    Tom
    Participant

    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.

    #205596
    agrolsy
    Participant

    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];
    Hammy Havoc
    Participant

    When I try the fix on https://bbpress.org/forums/topic/fix-for-phpbb3-to-bbpress-conversion-script/page/2/#post-205592, I get this error on an endless loop:

    Converting anonymous reply authors (100 through 100 of 100)

    Hammy Havoc
    Participant

    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.

    #205587
    PDidee
    Participant

    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');

    #205578
    Chuckie
    Participant

    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

    #205575
    Robin W
    Moderator
    #205574
    graverholt
    Participant

    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.

    #205570
    Robin W
    Moderator

    this will let you change text if you need it – not as good as having an ‘accepted translation’ but better than English

    add_filter(  'gettext',  'rew_bbpress_translate', 20 , 3  );
    add_filter(  'ngettext',  'rew_bbpress_translate' , 20 , 3 );
    
    function brexit_translate( $translated, $text, $domain ) {
    	if ($domain == 'bbpress') {
         $words = array(
                            
                            'Topic' => 'New-word',
                             'topic' => 'new-word',
             );
         $translated = str_replace(  array_keys($words),  $words,  $translated );
    	}
         return $translated;
    }

    just change what you need and add to in the middle section

    Put this in your child theme’s function file – or use

    Code Snippets

    #205568
    ico33
    Participant

    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.

    Danishsard
    Participant

    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.

    #205565
    jufdaniellevideos
    Participant

    I have exactly the same problem:
    Using LearnDash I try to post a new lesson, but then I cannot publish (or edit) the lesson. I get the exact same error message.
    In my case, everything was fine until yesterday, but today I get this message too!

    When I deactivate the BBpress plugin everything works as it’s supposed to… So I deduct that there must something going wrong in the BBpress-plugin. (maybe with the new update?)

    Hopefully someone will know the answer how to fix this;)
    I’ll be reading with you on this one!

    [edit: added that today is the first day I encountered the problem]

    #205564

    In reply to: Child CSS

    sbmar
    Participant

    Yes it is… directly after the update the entire website changed becuase it was no longer referencing the bbpress.css file in my child theme…

    pdvwp
    Participant

    Wordpress: 5.3
    bbPress: 2.6.0

    Brand new to WordPress. Building a site using Genesis Framework (NewsPro Theme) @ WPEngine.

    I just installed the two updates to WP 5.3 and bbP 2.6.0, but now I’m getting this error when I try to publish a post:

    “Publishing failed. Error message: Sorry, you are not allowed to edit the _bbp_topic_count custom field.”

    #205543
    kent25
    Participant

    yea @anthonious i also experience some thing worst a blank page on my site

    #205529
    pipipi07
    Participant

    Thank you for making it 2.6!
    However, there was a problem after the update.

    I use bbpress in Japanese.
    In ver.2.5, a code that sets the topic title to 20 characters in Japanese was added to functions.php and it worked properly.
    This is the code.

    function title_max_length ($ default) {
    $ default = 20;
    return $ default;
    }
    add_filter ('bbp_get_title_max_length', 'title_max_length');

    But after 2.6, it didn’t work.
    For example, if default = 20, only 6 characters will be reflected in the title in Japanese. If it is half-width alphanumeric characters, up to 20 characters are correctly reflected.

    I know this is a multibyte issue, but I don’t know how to deal with it. Can I change the limit on the number of characters in a title even with multibyte?
    I hope to find a good solution.

    I am not good at English. I’m sorry in terrible English. thank you for reading!

    #205528

    Topic: bbpress update

    in forum Installation
    kent25
    Participant

    the new update really looks dope (aka nice) with the separators for each topics, but it really needs work on

    1. its having issues with bubbypress, because when a member login its shows a blank page both for the home and bubbypress profile.
    i thought it was from my theme until i uninstall BBpress.

    2. this is just my suggestion…. topics should remain at its position, when a new reply is made.
    e.g: when a member reply to an old topic, it goes back to the top of the recent topics,made… this should be looked into

    anthonious
    Participant

    Hello,

    I use a combination of bbpress and buddypress (5.0) on my site. Buddypress notifications do not work properly since bbpress to 2.6.

    When I originally clicked the notification, it redirected me to the topic / response and marked the notification as read. It’s not happening now. The notification remains unread.

    I have tried on a clean installation of Worpdress, bbpress and buddypress without all the other add-ons, but it still doesn’t work.

    What is wrong?

    Anthonious

    PS: Excuse my english, Im not native 🙂

Viewing 25 results - 5,551 through 5,575 (of 64,471 total)
Skip to toolbar