Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 726 through 750 (of 7,560 total)
  • Author
    Search Results
  • #273141
    Slava Abakumov
    Moderator

    Hello,

    Starting from BuddyPress 3.0 we have removed support for the deprecated and unsupported bbPress 1.x that was bundled with BuddyPress.

    As written in our release post:

    Most notably, the Legacy Forums component has been removed after 9 years of service. If your site was using Legacy Forums, you need to migrate to the bbPress plugin.

    And here is our general bbPress 2.x forum installation guide:

    Installing Group and Sitewide Forums

    So, @m1000, please follow the migration guide and move everything forum-related to bbPress 2.x, which is faster and overall works better.

    m1000
    Participant

    Hello,

    I updated BP to 3.0 and I see there is no forums tab inside the groups. Is bbpress insidfe the groups not supported anymore?

    #273065
    Varun Dubey
    Participant

    You can set your parameters at wp-admin/options-general.php?page=bbpress

    #273024

    In reply to: Editing Main Page

    Varun Dubey
    Participant

    @cclemens /forums is template driven page, you will need to modify template files to edit it. You can also check with bbPress support.
    https://bbpress.org/forums/

    #273021
    cclemens
    Participant

    We are using bbPress Version 2.5.14 on our website at http://www.nationalbraille.org/forums using WordPress. Everything is latest version and all is up to date.

    I’d like to add a list of site rules on this page just above the list of groups. I thought I’d find it in the list of Pages on our website, but it’s not there, and the Settings for bbPress don’t give me an option either.

    Is this just not possible?

    Radzio125
    Participant

    I used before only bbpress forum but I decided to add also buddypress. I have old bbpress user profile custom fields that I created.

    How to make they works on buddypress user profiles?

    I don’t want to use default buddypress fields creator because I want to display some extra stuff like icons and extra text based on selected value, and default profile fields creator doesn’t offer this.

    Here is code that I used:

    // Display on User Edit Page
    add_action("bbp_user_edit_after_contact", "edit_gender_field");
    function edit_gender_field()
    {
        // a random selection of genders
        $genders = array("Male", "Female");
        // selected gender, if any
        $user_gender = bbp_get_displayed_user_field('u_gender');
        ?>
        <label for="gender"><?php _e('Gender'); ?></label>
        <select name="gender" id="gender">
            <option value="">Select your gender</option>
            <?php foreach ($genders as $gender) : ?>
                <option <?php selected($user_gender, $gender); ?>><?php echo esc_attr($gender); ?></option>
            <?php endforeach; ?>
        </select>
        <?php
    }
    
    // Save when updating
    // Our profile
    add_action("personal_options_update", "save_gender_value");
    // Other users' profiles
    add_action("edit_user_profile_update", "save_gender_value");
    
    function save_gender_value($user_id)
    {
        // exclude profile.php/user-edit update
        if (is_admin()) return;
        // update preference
        if (isset($_POST['gender']) && $_POST['gender']) {
            return update_user_meta($user_id, "u_gender", sanitize_text_field($_POST['gender']));
        } else {
            return delete_user_meta($user_id, "u_gender");
        }
    }
    
    // Display on User Profile Page
    add_action("bbp_user_profile_gender", "display_gender_value");
    
    function display_gender_value()
    {
        // selected gender, if any
        $user_gender = bbp_get_displayed_user_field('u_gender');
        // making sure user has set their gender first
        if (!trim($user_gender)) return;
        // all good
        if ($user_gender == 'Male') {
            return printf('Some stuff to display if user is %s', esc_attr($user_gender));
        }
        if ($user_gender == 'Female') {
            return printf('Some stuff to display if user is %s', esc_attr($user_gender));
        }
    }

    I guess that I should change action personal_options_update. I found in web something like that xprofile_data_before_save but it doesn’t work.

    Also I think that I should change bbp_get_displayed_user_field. I changed to xprofile_get_field_data but it doesn’t work too.

    Maybe I’m doing something wrong. Please help me if you know how to make it work.

    #272953

    I have installed buddypress and bbpress. My problem is that when the user tries to edit his profile (in buddypress) in the frontend, he does not allow it because he calls a post page from the beginning of the site years ago. That is, it does not allow editing the profile (profile), instead it takes me to another page outside of buddypress. In the buddypress menu the link that should call the edition is fine: l / adweb / profile / edit but after a delay in the execution call another page: / editorial-March-2011 /

    I would appreciate if you could guide me how to find the solution to this problem.

    Greetings and thanks

    #272889
    Joseph G.
    Participant

    There is something wrong with either of your theme or your shortcode syntax. We’ve been using both Visual Composer +bbPress+BuddyPress for several years and we have no issues so far.

    Take note that the theme must support buddypress or bbpress, atleast from the a simple stylesheet.

    Check out this theme: http://flocks.dunhakdis.com/community-forums/ . The homepage uses bbpress shortcodes formatted inside a VC block.

    Cheers

    #272583

    In reply to: problem

    Varun Dubey
    Participant

    @mariasmile508 comments are not allowed for topics by default, You can check with bbpress.org support forums. Topic Template display topic content and replies only.

    Norman Cates
    Participant

    When I go to my notifications in my profile, I click on a notification. But then it just takes me to the main support page with the list of topics.

    It doesn’t take me to the topic I received a notification about…

    Also, is it possible to get the same kind of dropdown I see in the bbPress and WordPress support forums, with links to:

    Topics Started
    Replied Created
    etc
    etc

    https://bbpress.org/forums/

    It would be really helpful to be able to link to those areas.

    Thanks

    #272496
    krioteh
    Participant

    Chat – BP Better Mesage :replaces the standard message system BuddyPress supports attachments (video including) and smilies, you can also conduct group discussions

    groups, extended profiles, news areas, activity feeds – this is a full-time functional BuddyPress

    polls – bbPress + GD Topic Polls, WP Easy Poll PRO also allows users to create polls

    for photos and albums (in addition to the voiced options), you can also try BuddyDrive

    but in general, you can see a list of plugins in my profile – there are a lot of things for BuddyPress (not all work correctly, but most of it is used on the sites I follow)
    https://profiles.wordpress.org/krioteh/#content-favorites

    🙂

    #272463
    Varun Dubey
    Participant

    @venutius that poll plugin is very old and not working, their codes are 6-year old https://github.com/Themekraft/BP-Polls
    You can check https://wbcomdesigns.com/downloads/buddypress-polls/

    @glenndavis007
    I have also created a couple of add-ons for PeepSo recently like bbPress integration, wpForo integration, LifterLMS Integration.
    You can ask for any plugin suggestion, and we will guide you a best available solution for it, and you can pick which one fits your site entirely.

    For Gallery Solution, You can check for rtMedia or MediaPress; both have the similar features.

    #272401
    michaellanfield
    Participant

    I installed bbpress and buddypress fine with the latest updates. However there are a few issues with them.

    1. BuddyPress group forums are still listed in main forum page https://www.thosecrazyvegans.net/forum I would like users to be able to create groups, but I want to be able to disable them and remove the existing ones from the main bbpress forum. How to do this?

    2. When goind to one of the links or sub forums or whatever you call them on the forum page like News category for example, https://www.thosecrazyvegans.net/forums/news/ nothing is in there. Where are my forums gone to? It was just working awhile ago.

    I use Pro theme from http://www.theme.co All plugins are updated. Thanks.

    #272393
    Henry Wright
    Moderator

    Hi

    Try asking your question over at bbPress. They handle forum-related questions.

    jqcaffeine
    Participant

    What am I looking for? I want my “Recent Posts” and “Recent Replies” to only include posts under a specific parent forum category, but I can’t (for the life of me) figure out how to implement such a filter.

    Why? Our community has a top-level forum dedicated to “Welcome, John McNewuser!” posts. It’s a good forum that serves a purpose, but replies in that forum add noise to the “recent” feeds, where participants are looking for the more relevant conversations going on in the main forums under a separate top-level parent forum category.

    Versions?

    WordPress:                             4.9.5
    BuddyPress:                            2.9.4
    bbPress:                               2.5.14
    bbPress Advanced Recent Topics Widget: 0.9
    #272377
    bergmans23
    Participant

    Hi there,

    I’m quite new to the Buddy/BB scene, although I’ve been building WP sites for a while now.
    Usually, WP Bakery’s Visual Composer is one of my key building blocks, but that does not go well for me in the Buddy/BB forum site I’m setting up now.

    When I’m setting up a Forum, I get the option of using VC’s backend editor in order to get the content and lay-out right, but when I preview the page, I get a text block showing all the VC shortcodes.

    Am I doing something wrong or are VC and BuddyPress bad bed fellows?
    I’m using the latest versions of all software and plugins. I’m using kBase theme by https://wedesignthemes.com/

    The site runs under http://dev.eltrex-motion.com/forums/

    Thanks!

    Bye

    Ward

    requincreative
    Participant

    Hello,

    We need advanced BBPress development and customization on a very short timetable and I have tried to search Google for BBPress experts and found only a few.

    Is there a BBPress development forum or a list of recognized BBPress developers that I can contact for a lucrative project opportunity?

    Thaks

    #272236

    In reply to: Assign Members Page

    baccoeur
    Participant

    Hi

    I have figure it out where the issue is i have checked this 3 components
    PLease see screenshot
    https://prnt.sc/j7k2k1

    So i can now assign my member page
    http://prntscr.com/j7k7uf

    So can you please give easy way instrutions or tutorial?
    On How can i make this Please!

    1.Create Buddypress Community
    *Users can create and update profiles, including the use of profile photos. Site administrators can easily set up the parameters of the user profiles.

    *Users can befriend one another. The site owner can decide what special abilities friends have with regard to one another.

    *Users can send private messages. BuddyBoss comes with a robust private messaging system, similar to that found on Facebook. Users can choose whether or not to receive an email notification when someone sends them a message.

    *Users can form and join groups. Groups can be used for a wide range of functions within the website. Administrators can choose to let their users create and join groups of common interest.

    *Users can follow activity streams. BuddyPress activity streams provide a quick digest of the recent activity going on within a site or with regard to a particular user.

    *Users can create blogs. Capitalizing on the full functionality of WordPress, the most popular blogging platform in the world, BuddyPress gives administrators and users a full-featured online publishing platform.

    *Users can participate in forum discussions. BuddyPress is fully integrated with bbPress, a slick forum system.

    2. Active Login portal with Facebook or Google login credentials.
    3. Active User generated material through BuddyForms or other methods.

    Please advice thank you!

    #272235
    Venutius
    Moderator

    You would install bbPress and add a page called forums, the sitewide forums would appear their, to add group forums you would go to Dashboard>>Settings>>Forums and enable group forums.

    One decision is if you want the group forums to appear in the forums list on the forums page. How I’ve described will do that. To keep them separate you would assign them a different root forum.

    #272233

    In reply to: Forums

    Venutius
    Moderator

    The forum is supplied by bbPress, with it you can provide group specific and sitewide forums.

    #272197
    wubs23
    Participant

    Hello,

    I am currently using Buddypress in addition to s2member.
    The user has to log in using s2member and give a whole bunch of personal information.
    They need to log in using s2member for certain reasons, one of which is another area where this information is required and used.

    However, all the information from the s2member registration is visible in their profile.
    I really do not want this.

    Is there a way to make it so they still login using s2member (site-wide, including buddypress and bbpress areas), but have the profiles not use all the registration fields from s2member?

    Thanks.

    Venutius
    Moderator

    I think this would be better asked in the bbPress forum, they will have better ideas as to what’s possible. I’ve not heard of such a plugin.

    #272089
    Varun Dubey
    Participant

    @bizzibi @cassihl If you are only looking for BP notification only not as email for new topics, you can try
    https://github.com/buddydev/bbp-bp-notify-new-topic

    For bbPres email notification, you can check

    bbPress Notify (No Spam)

    #271900
    DR_MCGILL
    Participant

    Bummmer. yes: bbpress, elementor, feedzy rss, jetpack, SiteOrigin page builder, super socializer.twitter, column shortcodes.

    #271886

    In reply to: Keymaster two Avatars

    Venutius
    Moderator

    This sounds like bbPress is not recognizing that you have an avatar set and is serving you the default avatar when you are posting in the forums. You might be better off posting this question in the bbPress forum as they are the experts. I’m relly not sure what else to suggest.

Viewing 25 results - 726 through 750 (of 7,560 total)
Skip to toolbar