Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 4,426 through 4,450 (of 64,401 total)
  • Author
    Search Results
  • #211647
    gathero
    Participant

    Hello, ive deleted an admin user with the Keymaster statut on BBpress (Version 2.6.5).
    Unfortunately, i cant attribute the “keymaster” to another admin user.
    I cant manage the forum section in WP.

    How can i fix this ?

    Thx.

    Seb.

    Robin W
    Moderator

    can you list other bbpress related plugins you have

    #211642

    In reply to: Replies not indenting

    Robin W
    Moderator

    I’m just a bbpress user who helps out here, so not in a position to change it 🙂

    JohnRDOrazio
    Participant

    Actually is also showing on replies, not just the opening topic post. So post = both, topic + reply.
    I might add that my forums are set as private, so only users registered to the website and allowed to the forums are able to see and post in them. I’m not sure if that has anything to do with this new error…
    Here is a screenshot:

    bbpress error

    #211633
    slimshadys
    Participant

    Hello. 🙂
    I’m using the latest version of bbPress and I would like to know if there is a way to refresh a page twice when I click its link.

    Let’s give an example:
    I’m in the topics list.

    I’m about to click on one random topic.. It successfully loads the topic and everything goes fine.
    But I’m doing some tests with my own plugins and I need to refresh that page twice.

    Like – “When you successfully load the page, load it again, just once more.”

    Is there a function for doing so? Like adding a refresh function to the topic pagination function?
    If you guys could help me out, would be appreciated 🙂

    Thank you!

    #211632
    simonlepamplemousse
    Participant

    Hi @robin-w

    I don’t think it’s related to the mail servers.

    From one the mails on the other functionalities work: registration, quote, buddypress, etc …

    Two, I try with several services: hotmail, gmail, etc …

    The proposed plugin does not seem to solve the problem …

    I will try the plugins

    BP Emails for BBP

    and

    bbPress Notify (No Spam)

    #211607
    Robin W
    Moderator

    are you just using bbpress default editor, or have you added the WordPress editor?

    #211604
    Alpo
    Participant

    Hello all

    I have problems with bbpress forum discussions. Users can not save the forum discussions. Especially there are problems with hyperlinks. Sometimes they are able to save, sometimes not. Accroding to our understanding the problems occur when they copy paste text.

    Saving works when they use Ipad, but they have much errors with windows setup.

    What could be ideal setup for bbforum users avoiding errors? Typical error is forwarding 404 page after they try to save message.

    Thank you in advance if you can give some assistance. We would like to keep bbpress our primary tool

    #211599
    Robin W
    Moderator

    email is the most complicated and hardest to debug !

    It might be that as your forum becomes more popular, that bbpress method of bulk sending emails is getting them marked as spam – many email companies hate emails with multiple cc’s.

    try

    AsynCRONous bbPress Subscriptions

    #211594
    simonlepamplemousse
    Participant

    @robin-w

    Hello,

    I have the latest versions of WordPress, bbPress and bbp style pack

    Users no longer receive email when they subscribe to a forum or topic.

    The email is sent to the administration email but not to subscribers.

    It’s not a mailbox problem. When there is a quote, it works.

    It is not related to bbPress 2.6.5

    Does anyone else have the same concern, is there a setting that I missed?

    Thank you for helping me and sorry for my rough English.

    #211586
    slimshadys
    Participant

    Hello all.
    I’ve been editing the bbPress 2.6.5 plugin a bit, in order to fit my use.

    As of now, I just wanna track down the topic_id and the author_id.
    That’s pretty simple, given the set of functions available for the community.

    So I managed to write this little code here:

    	global $author_id;
    	global $id_of_topic;
    
    	$id_of_topic = bbp_get_topic_id();
        	$author_id = bbp_get_topic_author_id($id_of_topic);
    

    The ID of the Topic is successfully retrieved, let’s say it’s “18446744073709551615”,
    but once I pass that variable to bbp_get_topic_author_id(), the output of $author_id is 0.

    Now that’s pretty weird considering that if I pass the number 18446744073709551615 directly into that function, everything goes fine, I retrieve the author_id successfully.

    One thing I noticed tho, is that printing out $id_of_topic, once with %d and once with %u (just after I call bbp_get_topic_id() ), I get two different values.

    – %d = 0
    – %u = 18446744073709551615

    Pretty weird.. How can I somehow pass the %u to bbp_get_topic_author_id()?

    Thanks in advance! 🙂

    #211578
    desmond234
    Participant

    Theme – Aardvark

    Hey guys, I’m having an issue with how my theme is interacting with the bbpress subforum list. I added the bbpress style pack plugin because of a issue I was having with the search bar, but it resulted in all the subfourms piling up on one another. The issue arises because the subforums have a box background (which I like), but the background overlaps with the other subforums. You can see the issue I’m having here.

    http://www.podfolk.com/forums/

    Does anyone know any code I can put into the style or functions file to resolve the issue?

    #211568

    In reply to: Replies not indenting

    Robin W
    Moderator

    WordPress 5.4.1
    bbpress 2.6.5
    bbp style pack 4.5.3
    twentyten theme

    #211567
    Pete
    Participant

    I have a problem with the way breadcrumbs are being displayed on my search results screen.

    First of all, I have the following (amongst other things) in my functions.php file:

    
    /**
    Just a simple breadcrumb trail, but, importantly, don't double up when we're at the root
    **/
    function mycustom_breadcrumb_options() {
    	// Home - default = true
    	$args['include_home']    = false;
    	// Don't need breadcrumbs if we're at the root
    	if ( apply_filters( 'bbp_no_breadcrumb', is_front_page() ) ) {
    	// Forum root - default = true
    		$args['include_root']    = false;
    	// Current - default = true
    		$args['include_current'] = false;
    	}
    	return $args;
    }
    add_filter('bbp_before_get_breadcrumb_parse_args', 'mycustom_breadcrumb_options' );
    
    /**
    Search only the specified forum
    **/
    function my_bbp_filter_search_results( $r ){ 
        //Get the submitted forum ID
        $forum_id = sanitize_title_for_query( $_GET['bbp_search_forum_id'] );
        //If the forum ID exits, filter the query
        if( $forum_id && is_numeric( $forum_id ) ){
            $r['meta_query'] = array(
                array(
                    'key' => '_bbp_forum_id',
                    'value' => $forum_id,
                    'compare' => '=',
                )
            );  
        }
        return $r;
    }
    add_filter( 'bbp_after_has_search_results_parse_args' , 'my_bbp_filter_search_results' );
    

    I have a search box on the forum home page and on the index page for each individual forum. For general navigation around my forum the breadcrumbs are presented as one might expect and search results are confined to those relevant to the current forum (or all forums from the home page).

    The breadcrumbs on the Forum ‘home page’ show simply as Forums and on individual forum index pages as Forums > ForumName, where ‘ForumName’ is the name of the current forum, etc. A search request from the Forum home page returns results as expected, with the breadcrumbs displayed as Forums > Search > Search Results for 'search string'. However, while a search from one of the individual forum index pages returns the refined search results as expected, the breadcrumbs are always displayed as Forums > Search > Search Results for 'search string', they don’t include the name of the forum that has been searched (i.e. Forums > ForumName > Search > Search Results for 'search string'.

    I think I can see that the search is actually being applied to all forums, then refined by the relevant function in the functions.php file, so I think I can see why I might have to do a little extra work to get the relevant forum name displayed in the breadcrumb, but can anyone suggest how I might do this? It would seem that I should be able to add a little more code to my mycustom_breadcrumb_options() function, but what exactly…?

    Thanks for any assistance anyone can offer.
    (WordPress 5.4.1, bbPress 2.6.5, website: digitalconcepts.net.au/forum – Please note, this part of the website is ‘hidden’ from the home page, you need to navigate there via the above direct URL)

    #211565

    In reply to: Replies not indenting

    sleestak
    Participant

    That’s why I said it is a fresh install. Literally…installed WordPress, bbpress, created a forum and it doesn’t work.

    JohnRDOrazio
    Participant

    I am seeing this error in the posts when posting / updating a post:

    Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘publish_topics’ not found or invalid function name in …/wp-includes/class-wp-hook.php on line 287

    Am using WordPress 5.4.1, Buddypress 6.0.0, bbPress 2.6.5, and PHP 7.1.33 .

    #211547
    eroesi
    Participant

    Hey guys,
    I think my bbPress database is broken.

    First I am unable to post anything with any users and different rights (admin, participant), the error “you are too fast, slow down” appears every time.

    Second I am unable to reset the database through admin > tools > forums > reset forums. If I try to reset the database with a click on the blue button “reset bbPress” the page reloads but there is the whole content still there.

    Third I tried to delete and reinstall bbPress, but after reinstall I have not a single bbPress-option in the admin dashboard, like tools > forums oder settings > forum oder Forums, Topics and the other bbPress-related links.

    I already disabled every plugin but still I am unable to post anything or reset the database.

    Can you guys please help me?

    #211544
    zirow
    Participant

    I’ve tried @robin-w snippit above but didnt work with my current wordpress version(latest one according to the date of my post) but i managed to get it working with this snippit if anyone needs it.

    Note: I’m a beginner to wordpress and bbpress so there might be other better ways of doing this.

    function change_role(){
    $user_id = $user->ID ;
    if( current_user_can(‘administrator’)){

    bbp_set_user_role( $user_id, ‘bbp_keymaster’ );

    }
    }
    add_action(‘wp_login’, ‘change_role’);

    #211543
    sleestak
    Participant

    I have posted this before, but I still can’t get this to work. I have threaded replies enabled, but my replies are not indenting. To determine if it was an issue with my theme, I created a brand new WordPress test site and tried all of the included test themes and indenting does not work on any of them. The only plugins I have are bbpress and the bbpress style pack. What am I missing?

    Thanks!

    #211537

    In reply to: bbPress Roadmap

    Robin W
    Moderator
    #211535

    In reply to: bbPress Roadmap

    Dion Hulse
    Keymaster

    Like WordPress, bbPress uses a semi-decimal-based versioning system, where bbPress 2.4, 2.5, and 2.6 are considered major versions.

    bbPress 2.6 was a major update with just under 6 years of development:

    This version of bbPress has been in development for just a bit under 6 years (yikes!) over which 420 tickets were resolved via 1737 individual code commits.

    The Full list of releases is available on the bbPress codex, although it doesn’t have the full details for the latest two minor 2.6.x releases.

    #211534
    josh.grisdale
    Participant

    Just wondering if there is an official bbPress roadmap for the next few releases. We’ve been on version 2 since 2011..

    #211532

    Read the blog post here!

    bbPress 2.6.5 is out!

    This is a really important security release, so please take the time to update as soon as you are able to. There are 3 separate security improvements in 2.6.5, so don’t delay!

    Sorry for releasing late in the week. Thank you to everyone for using bbPress! 💚

    amirzwp
    Participant

    Ok I fixed it with deactivating and activating bbpress again.

    #211501
    Robin W
    Moderator

    Sorry I’m just a bbpress user who helps out here. I don’t have time to research every part of code – the answer is no doubt yes.

Viewing 25 results - 4,426 through 4,450 (of 64,401 total)
Skip to toolbar