Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 6,576 through 6,600 (of 64,431 total)
  • Author
    Search Results
  • #196452
    Robin W
    Moderator
    #196449

    In reply to: duplicate emails

    wpturk
    Participant

    I have the same issue. Any fix for this? I have bbpress 2.6 RC5

    #196443
    mattybakes01
    Participant

    When I view topics on my S9+ the right side of the topic section is cut off.

    Viewing on phones with smaller screens isn’t a problem. Just on a larger mobile screen.

    It’s fine on Tablets too.

    I have adjusted the screen res on my phone aswell.

    I’ve attempted several CSS changes with no luck.

    #bbpress-forums .hentry {
    margin-left: 0px;
    }

    and


    @media
    only screen and (max-width: 480px){
    #bbpress-forums div.bbp-forum-author,
    #bbpress-forums div.bbp-topic-author,
    #bbpress-forums div.bbp-reply-author {
    position: relative;
    }
    #bbpress-forums div.bbp-reply-author img.avatar{
    position: relative;
    display: block;
    }
    }

    #196442
    filipfek
    Participant

    Hi 🙂
    I do not know if my problem is more concerned with buddypress support or bbpress support, but I wrote here.

    My WordPress
    bbPress 2.5.14
    BuddyPress 3.2.0
    I use theme Eduma.

    I’m using BuddyPress and created a group with a private forum. The problem is that the group forum has no template. If I check the page, it has all classes. It looks like it can’t read the css bbpress file (it look like that Annex1). I created the forum using bbPress. My forum looks like that Annex 2 and the group forum should look exactly the same. How can I do this? I will be grateful for your help.

    #196435
    Milan Petrovic
    Participant

    This is not the bbPress error, it is obviously an error in the function blockchain_replace_the_title() inside your theme.

    #196421
    Robin W
    Moderator

    Import Forums

    although the best that offers is from version 1.1

    #196407
    bennny91
    Participant

    Hello all, recently upgraded to PHP 7.2 on WPengine and our BBpress Forums has decided to throw a HTTP error 500.

    The error message shown in log:

    [Wed Nov 21 2018] [php7:error] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function blockchain_replace_the_title(), 1 passed and exactly 2 expected in /nas/content/live/ep18/wp-content/themes/blockchain/inc/default-hooks.php:60\nStack trace:\n#0 [internal function]: blockchain_replace_the_title(‘Forums’)\n#1 /nas/content/live/ep18/wp-includes/class-wp-hook.php(286): call_user_func_array(‘blockchain_repl…’, Array)\n#2 /nas/content/live/ep18/wp-includes/plugin.php(203): WP_Hook->apply_filters(‘Forums’, Array)\n#3 /nas/content/live/ep18/wp-content/plugins/bbpress/includes/core/theme-compat.php(519): apply_filters(‘the_title’, ‘Forums’)\n#4 [internal function]: bbp_template_include_theme_compat(‘/nas/content/li…’)\n#5 /nas/content/live/ep18/wp-includes/class-wp-hook.php(286): call_user_func_array(‘bbp_template_in…’, Array)\n#6 /nas/content/live/ep18/wp-includes/plugin.php(203): WP_Hook->apply_filters(‘/nas/content/li…’, Array)\n#7 /nas/content/live/ep18/wp-content/plugins/bbpress/includes/core/sub-actions.php(436): apply_filters(‘bbp_temp in /nas/content/live/ep18/wp-content/themes/blockchain/inc/default-hooks.php on line 60, referer: https://ep18.wpengine.com/

    Can anyone help?

    Is BBpress compatible with PHP 7.2?

    Thanks
    Ben

    #196405
    Robin W
    Moderator

    whilst this hasn’t been updated in a few years, I think it still works

    bbPress Moderation

    #196393
    pallavi
    Participant

    Hello,
    I am using bbpress for forums on my site. But now I am migrating my forums to another site.

    I want to export only open topics to new site. Is there any way to get only open topics? Can anyone help me out for this?

    #196381

    In reply to: Forum relpy deletion

    ehasimon
    Participant

    Thanks. Could you tell me where in the plugin file “bbpress” I can find the coding that needs to be changed/added, or do I need to place it into the functionality file?

    #196380

    In reply to: Forum relpy deletion

    Robin W
    Moderator

    Custom Capabilities

    and add

    delete replies to participants

    #196378
    Robin W
    Moderator

    I’d suggest you contact Milan who wrote GD bbpress attachements

    at support@dev4press.com.

    #196374
    Robin W
    Moderator

    I had a look, I think it is your theme which reloads bbpress.min.css which stops my style pack plugin settings working.

    can you see if your parent theme has a bbpress file?

    #196368
    gotogoood
    Participant

    I made private forums using “bbp private groups” and added “GD bbPress Attachments” plugin to upload files.

    Then, everyone one can access the media file despite the closed forums.
    Is it possible to make media URL private?

    Thanks.

    robertstaddon
    Participant

    Thank you, @robin-w!

    So I found found the cause of the bug. There is a typo on line 303 of the “bbpress/includes/topics/template.php” file in the latest version of bbPress (2.5.14). It tries to set the “post_status” query value to “readable”. This is an invalid value for “post_status”. What the programmer intended was to set the “perm” query value to “readable”.

    Robin W
    Moderator

    try this filter

    //make sure scheduled stickies don't show - pending fix by bbpress
    add_filter ('bbp_get_stickies', 'rew_get_stickies' , 10 , 2) ;
    function rew_get_stickies ($stickies, $forum_id ) {
    	$return = array () ;
    	//check if any are future
    	foreach ($stickies as $sticky) {
    		if (get_post_status( $sticky ) !='future') 
    		 array_push ($return, $sticky) ;
    	}
    return $return ;	
    }
    Robin W
    Moderator

    agree, it seems to be a bug.

    I have lodged a trac ticket

    https://bbpress.trac.wordpress.org/ticket/3230

    I’ll see how easy it is to filter for a temporary fix

    #196349
    Robin W
    Moderator

    I think you will need a developer. I am fully tied up, but try Milan

    Freelance Programmer needed for BBpress – how/who to hire?

    #196348
    Robin W
    Moderator

    your site is using the bbpress.min.css file

    you should copy the bbpress.css file to your childtheme as per

    Theme Compatibility

    and amend it there

    #196347
    richardt111
    Participant

    Yes, had bbpress running for about 8 months now and no issues ever before.

    Permalink reset has not worked unfortunately!

    #196345
    Robin W
    Moderator

    sorry, what I meant was ‘were users able to post topics and replies and now can’t, or have you recently added bbpress and topics and replies have never worked’

    and did you try resetting permalinks?

    #196340
    Robin W
    Moderator

    ok, so

    your site was working – and with no changes that you are aware of, it is now not working ?
    it happens every time
    with a default theme AND just bbpress the error happens – yes?

    try

    dashboard>settings>permalinks and just click save – this just resets the permalinks

    #196330
    longtall
    Participant

    Tearing my hair out here trying to change the content container to transparent. I’ve tried changing the bbpress.css file, putting custom css in the bbl style pack, but nothing seems to work.
    Really appreciate some help here as I don’t what else I can do.
    WordPress 4.9.8
    bbPress 2.5.14
    http://dftasmania.com/forums/topic/test-topic/
    Thanks in advance.
    Cheers
    Longtall

    #196323
    nemoprofeta
    Participant

    Hello,
    we are migrating our site which includes a bbPress forum. The migration process is pretty long. So we’d rather not close the forum for a long time.

    We’ll start the migration import the whole database. The rest of the process will take several days. This means that in the meantime new discussions will be added to the forum.

    We thought we could add those new discussions using the XML importer. But in our tests it didn’t work. The discussions don’t show up in the frontend. And when we try to fix them with the bbPress tools, they disappear.

    Is there a way to do it?

    #196318
    maxlevel
    Participant

    @robin-w 1 and 2 both yes and I will contact you.


    @odevbul
    Thanks, I already tested the above plugin as well as this
    bbPress Moderation By Ian Stanley

    The problem is that both plugins work for all forums and I need it for only one of my forums.

Viewing 25 results - 6,576 through 6,600 (of 64,431 total)
Skip to toolbar