Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 8,076 through 8,100 (of 64,454 total)
  • Author
    Search Results
  • #187757
    sanjayrath
    Participant

    The steps have been outlined at this link and it works perfectly.

    Shortcode to add “Edit Profile” link

    #187756
    Taim786
    Participant

    Yoast is a good seo plugin and I’m sure it works fine with bbpress. I had used bbpress in one of my projects and also installed yoast and it was working fine.

    #187753
    Peetee
    Participant

    It’s clear now. It’s a BBpress issue.
    When I disable the BBpress plugin, logging in is no problem anymore for the imported users.

    So BBpress 2.6 RC3 is not compatible with WP 4.8.2.

    #187752
    Robin W
    Moderator

    The last problem I’m getting is it always show bbPress is not compatible with Pro blog in config file

    can you explain what you mean by this – is this an error message you are getting and when and how?

    American2020
    Participant

    So, I’m having a problem using bbPress.

    I have set 2 Forums on my site and whenever a non registered visitor clicks on the link to the Private Forum, instead of landing on a page informing them that they must be registered in order to access that content, they just land on a 404 page.

    How do I change this behavior?

    People asked on other post, while is it even that a visitor has access to the Private Forum link but, that’s easy, because I need that on the navigation menus, and also so they know it exists.

    #187749
    Robin W
    Moderator

    try these possible fixes

    bbpress wp4 fix

    bbpress wp4 fix2

    #187746
    celtinvest
    Participant

    Hi Richard,

    It seems that you have the same problem as here ? https://bbpress.org/forums/topic/topics-not-showing-on-forum

    #187745
    Peetee
    Participant

    In addition to the my question above:

    It seems that I can log in with my mailadress instead of my username. I saw that the BBpress plugin has not been tested with WP version 4.8.2. Could this be the issue here?

    #187742
    celtinvest
    Participant

    It seems that I have the same problem as you: https://bbpress.org/forums/topic/users-can-not-see-topics-anymore

    The problem appears after I tryied to move a reply to another forum.

    #187741
    checmark
    Participant

    Sorry. I’ve read all kinds of posts about this and just don’t get it. I want to create a separate forum/category/topic for a Landlord and Tenant Bureau and have only the topics related to this show on the Landlord and Tenant page. I’ve tried everything and consulted with Avada tech support who said to contact bbpress.

    Appreciate any help.

    #187739
    richard.miller
    Participant

    I’ve created eight forums, and am in testing mode.

    In just ONE of these forums, my “participant” test user can’t see or create topics.

    I can’t see anything different about that forum at all.

    I’ve run the “repair forums” tools, no effect.

    Is this a known issue?

    WP 4.8.4
    BBPress 2.5.14
    http://www.fluentself.com/forums/

    #187737
    #187736
    camila2542017
    Participant

    hi can anyone help?
    I’m trying to integrate bbPress with this Presashop blog module: https://addons.prestashop.com/en/blog-forum-new/25908-pro-blog-all-in-one-package-blog.html
    I bought that module some days ago and trying to do that, I try to contact the developer but he doesn’t support that. I also have also managed to compete the integration. The last problem I’m getting is it always show bbPress is not compatible with Pro blog in config file
    Do you guys have experience with this?
    Thanks

    #187734
    celtinvest
    Participant

    Hello,

    I have a private forum.

    Yesterday, I wanted to move a reply to a new forum I created. But I guess I did something wrong.

    Now, the participants of the forum could not see anymore the Topics and Replys. They only can see the Forums but when they click on Forum to get acces to all the Topics inside of the forum, there is a message saying: “What a pity, there is no topics find here”.

    What’s strange, as a webmaster, I can see all the topics perfectly…

    Do you have any idea of what’s wrong for all the users ?

    Thanks.

    Paul

    My webiste is: https://celtinvest.com
    My WordPress is: 4.8.2
    My bbPress is: Version 2.5.14

    #187717
    jerichox
    Participant

    Can anyone help me Style this Recent topic widget to match what I currently have on my page for Recent Posts.. I would like it to use the Avatar of the user that posted like it does now, just bigger and have it look the same..

    http://piw.ewarena.com/ is the webpage

    Ive messed with the output code a little and always mess it up cant get it to how I want since im a newbie to the CSS stuff.. Any help would be appreciated!

    using the BBpress Recent Topic Widget..

    #187715
    super powered
    Participant

    The reason the function doesn’t work is because BBPress throws a fatal error when it tries to handle the array of items when it expects it as a string. We probably just need to get a filter in the core that allows us to manipulate that value before it tries to use the split() function.

    Until then, kind of a hacky workaround is to use JS to append the values to a hidden field:

    
    function display_tag_elements($selectedTags, $userRole, $task)
    {
        $html = array();
        $tags = get_categories(array('hide_empty' => 0, 'taxonomy' => 'topic-tag'));
        $selectedTagsArray = explode(', ', $selectedTags);
        if ($userRole != 'bbp_participant' || $task != 'edit')
        {
            $html[] = "";
            foreach ($tags as $tag)
            {
                $selected = '';
                if (in_array($tag->name, $selectedTagsArray))
                {
                    $selected = 'checked';
                }
                $html[] = "<input type='checkbox' class='bbp_topic_tags_checkbox' name='bbp_topic_tags_checkbox[]'" . $selected . " value='" . $tag->name . "'>" . $tag->name . "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
            }
    
            $html[] = "<input type='hidden' class='bbp_topic_tags_hidden' name='bbp_topic_tags' value='".$selectedTags."'>";
    
            $html[] = "
                <script>
                    var checkboxes = document.getElementsByClassName('bbp_topic_tags_checkbox');
                    var hidden = document.getElementsByClassName('bbp_topic_tags_hidden');
                    var hiddenVal = hidden[0].value.split(', ');
                    
                    for(var x = 0; x < checkboxes.length; x++)
                    {
                        checkboxes[x].addEventListener( 'change', function() 
                        {
                            var index =  hiddenVal.indexOf(this.value);
                            var checked = this.checked;
                            if(checked && !index > -1) 
                                 hiddenVal.push(this.value);
                            else if (!checked && index > -1)
                                 hiddenVal.splice(index, 1);
                            
                             hidden[0].value = hiddenVal.join();
                        });
                    }
                </script>
            ";
        } else
        {
            $html[] = $selectedTags;
        }
    
        return implode('', $html);
    }
    
    

    However this has a pretty notable downside in that someone could just inspect the code and add whatever they want to the hidden field. So you’ll want to make sure your also using one of the spam filters like bbp_new_reply_pre_set_terms to make sure the new values are terms you’ve predefined.

    Side note: there also seems to be a pretty annoying bug in that participants can edit the topics tags on reply, so I would just disable it on reply for non-moderators.

    EDIT: kind of like I just did. I don’t think I should be allowed to add tags to existing topics. this feels like a bug.

    #187714
    diego923
    Participant

    Hey guys, I am new to wordpress, and bbpress. I am starting a forum, and I want to add a profile page for the users. I also want to add the ability to make a signature at the end of their posts. I do not know how to work with the scripts so much, I get lost in which editor I should be using, or where to place the information. The scripts I have put in following other threads have had no effect.

    #187712
    trane251260
    Participant

    Hi i am having the same need and experience with the bbPress post via email plugin.
    No luck in getting replies posted to the forum.

    I am interested in sharing any progress / input on this.

    By the way – I have seen that ‘Buddyboss Reply by Email’ plugin advertise this capability (among others). It is a paid plugin though.

    Cheers

    #187703

    In reply to: Delete own posts

    sarwarc
    Participant

    Hi LeGuerg,

    Thanks for the useful post. I have added those lines of code in two php files that you mentioned, but still particants can’t delete their own posts.

    /home/XXX/public_html/XXX/wp-content/plugins/bbpress/includes/replies/capabilities.php
    /home/XXX/public_html/XXX/wp-content/plugins/bbpress/includes/topics/capabilities.php

    Any idea why? Anyone’s help will help will be greatly appreciated.

    #187699
    Watbube
    Participant

    Hello

    I am looking for a bbPress plugin where a thread author can mark his thread as completed

    #187698
    Peetee
    Participant

    Since this weekend I’ve been testing BBpress, trying to migrate an Invision 3.4.x forum through the BBpress importer. This is a forum with 38.000 members and 320.000 forum posts.

    Using the 2.5.14 BB importer version this did not go well: it would hang several times and stop at around 250.000 posts.

    Importing with version 2.6 RC3 went considerably better. Last night the complete forum was imported in 1 run! So that is really promising!!

    But as we do not know whether the 2.6 RC3 version is stable enough to keep using, and we do not know when the 2.6 final release would be released, one might consider to use the 2.6 version for import and then downgrade to the last stable version 2.5.14 for the time being.

    But the question is ofcourse: is this wise? And is this going to bring trouble? Who could advise me in this matter?

    Greetz,
    Peetee.

    #187693
    carajoan
    Participant

    I’m having this problem after trying this solution, searching the codex and this forum. Here are all the various solutions I’ve tried:

    .reply {
        color: #000000 !important;
    }
    
    #commentform #submit, .reply, #reply-title small {
        background-color: #000000;
        color: #ffffff;
    }
    
    .forum a { color: black !important; }
    
    .bbp-forum-info { color: black !important; }
    
    .bbp-forum-topic-count { color: black !important; }
    
    .bbp-forum-reply-count { color: black !important; }
    
    .bbp-forum-freshness { color: black !important; }
    
    .bbp-topics {
    color: black !important;
    background-color:white;
    }
    
    .bbp-forums a { color: black !important; }
    
    #bbpress-forums div.bbp-topic-content a,
    #bbpress-forums div.bbp-reply-content a {
    	background-color: white;
    }
    
    #bbpress-forums div.even,
    #bbpress-forums ul.even {
     background-color: #fff;
    }
     
    #bbpress-forums div.odd,
    #bbpress-forums ul.odd {
     background-color: #fbfbfb;
    }
    
    /*styling to move 'Subscribe' to right hand side */
    .single-forum .subscription-toggle  {
        float:right !important ;
    }
    #187682
    obe711
    Participant

    bbPress came with the theme I installed but I cannot seem to get it to work. I couldn’t find any other posts about this problem either. Any advise would be super helpful. Thanks

    https://www.atscg.org/consumer/forums/

    or

    forum

    #187675
    Tony
    Participant

    I have two forums and I have two non-bbPress widgets. I’ve setup the widgets to show up on forum pages with the Widget Options plugin. Each of the forums need to show only the menu that pertains to it (match by state name). As of now, both widgets show up on both forum pages.

    Tried conditional tag: is_bbpress() with the page ID’s, but it doesn’t change anything. None of my researched plugins seem to have this feature figured out.

    Any ideas? Still fairly new to all this and not a coder so don’t have the best vernacular for troubleshooting.

    WP version: 4.8.2
    bbPress version: 2.5.14
    Site: https://selfdirectforum.com/forum/

    #187674
    fdarn
    Participant

    Hello,
    I am using BBPress on WordPress 4.8.22
    Where can I change the CSS styling for the recent replies wdiget? The fonts and link colors do not match the rest of my widgets.

    Thank you.

Viewing 25 results - 8,076 through 8,100 (of 64,454 total)
Skip to toolbar