Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,426 through 4,450 (of 73,985 total)
  • Author
    Search Results
  • #311332
    BuddyBoss
    Participant

    @techhnyne

    BuddyBoss Platform (our version of BuddyPress) is free, including updates. The platform includes all of the social functionality, while the theme is purely for layout and is optional. You do pay for the theme, just as you would pay for a nice BuddyPress theme. You can also build your own theme, or use some generic free theme from the WordPress themes repo if you prefer.


    @hochingj
    Thanks!

    N33D
    Participant

    Hi there,

    Found this article: https://buddypress.org/support/topic/how-to-show-pending-memberships-to-user/

    It seems this is not baked in functionality in BuddyPress? Can’t find it anywhere in the code.

    N33D
    Participant

    Hi there,

    I can’t find any topic about this. When enabling WP_DEBUG I get the message below when a person requests to join a group.

    
    Deprecated: groups_send_membership_request was called with an argument that is deprecated since version 5.0.0! Arguments passed to groups_send_membership_request should be in an associative array. See the inline documentation at /Users/jvanoel/Sites/mvp/wp-content/plugins/buddypress/bp-groups/bp-groups-functions.php for more details. in /Users/jvanoel/Sites/mvp/wp-includes/functions.php on line 4997
    
    Warning: Cannot modify header information - headers already sent by (output started at /Users/jvanoel/Sites/mvp/wp-includes/functions.php:4997) in /Users/jvanoel/Sites/mvp/wp-includes/pluggable.php on line 1281
    
    Warning: Cannot modify header information - headers already sent by (output started at /Users/jvanoel/Sites/mvp/wp-includes/functions.php:4997) in /Users/jvanoel/Sites/mvp/wp-includes/pluggable.php on line 1284
    

    Is there is a fix for this in the works?

    #311317
    N33D
    Participant

    Oh man, was breaking my head about this one for the past days. But found the solution, of course the answer was right there. I forgot to exclude admins and mods in the loop. Don’t understand why they would be excluded in the first place.

    There is the complete code, including to get xProfile fields for anyone that is interested:

    
    <?php
        $args = array(
            'group_id' => bp_get_group_id(),
            'exclude_admins_mods' => false
        );
    
        if ( bp_group_has_members( $args ) ) : ?>
            <ul id="member-list" class="item-list">
                <?php while ( bp_group_members() ) : bp_group_the_member(); ?>
                    
                    <?php $user_id = bp_get_group_member_id(); ?>
                    <li>
                        <span class="avatar">
                            <a href="<?php bp_group_member_domain(); ?>">
                                <?php bp_group_member_avatar_thumb(); ?>
                            </a>
                        </span>
                        <span class="name">
                            <a href="<?php bp_group_member_domain(); ?>">
                                <h4><?php bp_group_member_name(); ?></h4>
                            </a>
                        </span>
                        <span class="platforms">
                            <?php $user_psn_handle = bp_get_profile_field_data('field=PSN handle&user_id='.$user_id); ?>
                            <?php if($user_psn_handle): ?>
                                <i class="icon saturated standalone platform psn"></i>
                            <?php endif; ?>
    
                            <?php $user_xbox_handle = bp_get_profile_field_data('field=XBOX handle&user_id='.$user_id); ?>
                            <?php if($user_xbox_handle): ?>
                                <i class="icon saturated standalone platform xbox"></i>
                            <?php endif; ?>
                        
                        </span>
                        <span class="actions">
                            <a class="button small" href="<?php bp_group_member_domain(); ?>">
                                <?php esc_html_e('View profile', 'mvp'); ?>
                            </a>
                        </span>
    
                    </li>
    
                <?php endwhile; ?>
    
            </ul>
    
        <?php else: ?>
    
            <div id="message" class="info">
                <p><?php _e( 'No members were found.', 'buddypress' ); ?></p>
            </div>
    
        <?php endif; ?>
    
    #311316
    N33D
    Participant

    A link in this documentation gives a 404: https://codex.buddypress.org/developer/loops-reference/the-group-members-loop-bp_group_has_members/ – see Accepted Parameters – group_id required link to “bp_has_groups() loop”.

    This is my code at the moment:

    
    <?php
        $args = array(
            'group_id' => bp_get_group_id()
        );
    
        if ( bp_group_has_members( $args ) ) : ?>
    
            <ul id="member-list" class="item-list">
                <?php while ( bp_group_members() ) : bp_group_the_member(); ?>
    
                    <li>
                        <span class="avatar">
                            <a href="<?php bp_group_member_domain(); ?>">
                                <?php bp_group_member_avatar_thumb(); ?>
                            </a>
                        </span>
                        <span class="name">
                            <a href="<?php bp_group_member_domain(); ?>">
                                <h4><?php bp_group_member_name(); ?></h4>
                            </a>
                        </span>
                        <span class="actions">
                            <a class="button small" href="<?php bp_group_member_domain(); ?>">
                                <?php esc_html_e('View profile', 'mvp'); ?>
                            </a>
                        </span>
    
                    </li>
    
                <?php endwhile; ?>
    
            </ul>
    
        <?php else: ?>
    
            <div id="message" class="info">
                <p><?php _e( 'No members were found.', 'buddypress' ); ?></p>
            </div>
    
        <?php endif; ?>
    

    Any help appreciated. I’m stuck here.

    alainfauconnet
    Participant

    Version WP: 5.4 multisite
    Version BuddyPress : 5.2.0
    url http://www.easyrelation.com
    Théme child twenty seventeen ( testé avec plusieurs autres thème et problème recurrent )

    Bonjour !

    Je rencontre un petit soucis car il est impossible d’ajouter depuis l’espace membre des groupes ou des citations. les options sont bien cochées dans les options buddypress. Petit soucis avec les citations également impossible d’en ajouter.

    Seul moi est en capacité d’ajouter un groupe depuis l’interface wordpress mais pas depuis mon espace membre sur le site . C’est comme si il manquait un lien pour en ajouter.

    Voilà cela fait des jours que je bloque dessus si vous pouviez m’aider cela serai génial ! Merci ^^

    honoluluman
    Participant

    Hello ,

    I am running a small blog site with mainly 3 roles on it . Subscriber, Contributor, Admin.
    I don’t have enabled the friends bp component, so in order for a user to have autocomplete in private messages i am using the define( 'BP_MESSAGES_AUTOCOMPLETE_ALL', true ); from here

    The problem is that the query give all users as a result. Is there a way to allow only contributor+admins in the results? Maybe by messages_autocomplete_init_jsblock function?

    Thank you all in advance 🙂

    andricor
    Participant

    I have a buddypress site with bbpress and wp ulike (https://wordpress.org/plugins/wp-ulike/). If I activate the like possibility on the activity stream page and also in the bbpress the same topic or reply could get independent likes in the topic page and in the activity page.
    Therefore I would like to hide the like button on the activity page only for bbpress related entries, so that likes are only visible and “collected” in the forum topic page. In the same fashion like post comments are disabled in the buddypress settings.
    What would be the easiest way to achieve this?

    #311310
    N33D
    Participant

    Hi there,

    I’m looking for a solution to show a member list on the group home. But I can’t get any members to show up. I tried a lot, even to copy and paste the legacy /groups/single/members.php file (https://pixelheads.d.pr/xCH6i1) and hooked it on the homepage at the “bp_before_group_body”.

    The custom code works on the “Members” page. It just won’t work on the “Home” of the group page.

    I use the latest WordPress and BuddyPress version. I do not have other plugins installed.

    Any ideas?

    #311300
    clickallco
    Participant

    Can you clarify your question? The {{usermessage}} already shows the content of the update and already “grabs the contents of the original update post”, like you’re writing.

    Are you asking how to rename “Go To the Discussion” to the thread title?

    Maybe you can find what you’re looking for in

    Email Tokens

    #311293
    nebuchadnezzar
    Participant

    Hi, I’m experience some undesired behavior and I can’t figure out why for the life of me.

    Whenever a logged-in user tried to navigate to their buddypress profile, they instead get sent “../profile/” instead of “../members/username/profile/”

    I’ve checked/tested the following;
    – disabled all other plugins for conflict testing
    – I have a redirection plugin but no such redirect specified(or ever created for that matter)
    – nothing related in .htaccess
    – reset folder permissions in case they were interfering
    – cleared server-side cache
    – checked for server side redirect
    – reset permalink structure

    This isn’t something I can really attribute much to recent changes as I haven’t touched anything that interacts with profiles in some time.

    Any thoughts?

    #311291
    onfleekresources
    Participant

    Is there a plugin for this example in my buddypress community?

    Tina sets up her profile and selects female, missouri, 4/15/2002, and is a student.
    I go to post and select a category, tag, or group that is specific to female students that are 18 yrs old and live in Missouri.
    Only these users will see that post in their BuddyPress Newsfeed. What is the best way to do that?

    Is there something out there that I can install to make this happen? I want users to only see what is appropriate for them.

    Thank you !!!

    joshloo
    Participant

    The Original Buddypress email template:

    {{poster.name}} replied to one of your updates:

    "{{usermessage}}"

    Go to the discussion to reply or catch up on the conversation.

    Is there a way to add a “{{{thread.content}}}” or something similar so that the user can just view the original title of the thread instead of having to head to the URL?

    A function that can grab the contents of the original update post and place it inside the email?

    Thanks in advance!

    #311285
    Varun Dubey
    Participant

    @onfleekresources

    It can be done with some custom code, or you can also checkout follow plugins.

    1- BuddyPress Private Community Pro plugin that adds a couple of features for admin and it allows admin to select based on user role or member type who can post on activity stream and you can also apply same limits on other BuddyPress features.

    2- You can set some specific members as auto friends to all members, and any activity admin members are going to make will be displayed to all member’s activity page

    clickallco
    Participant

    Wordpress 5.4
    Buddypress 5.2
    Theme: Twenty NineteenVersion: 1.5

    Hi guys

    I’m looking to create a custom theme built around BP Nouveau and have dequeued the css, but doing so makes the member and group cover images disappear.

    In BP legacy it was possible to follow this tutorial (https://codex.buddypress.org/themes/buddypress-cover-images/), but in Nouveau it doesn’t seem work.

    Here’s the old code for it

    function mytheme_cover_image_callback( $params = array() ) {
        if ( empty( $params ) ) {
            return;
        }
     
        return '
            #buddypress #header-cover-image {
                height: ' . $params["height"] . 'px;
                background-image: url(' . $params['cover_image'] . ');
            }
        ';
    }
     
    
    function mytheme_cover_image_css( $settings = array() ) {
        $settings['callback'] = 'mytheme_cover_image_callback';
     
        return $settings;
    }
    add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'mytheme_cover_image_css', 10, 1 );
    add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'mytheme_cover_image_css', 10, 1 );
    
    function your_theme_cover_image_css( $settings = array() ) {
    
        $theme_handle = 'bp-parent-css';
     
        $settings['theme_handle'] = $theme_handle;
     
         $settings['callback'] = 'mytheme_cover_image_callback';
         
     
        return $settings;
    }
    add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );
    add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );

    Anyone got an idea?

    Thanks for your time!

    #311281
    Varun Dubey
    Participant

    @n33d there are couple of discussion on removing name field on Trac https://buddypress.trac.wordpress.org/ticket/7760

    #311280
    N33D
    Participant

    Hi there,

    I don’t understand why this is so complicated.

    When people register they are required to enter a username and a name. Their username is not changeable after that, I understand that this is WordPress default functionality.

    Though:

    1. what is entered at “Username” is shown on someones profile page like: @name
    2. what is entered at “Name” at the register form is filled in the field “First name” and “Nickname”
    3. Display name is set as “Nickname / First name” – since they are the same

    – Why isn’t just the display name used for BuddyPress on someones profile?
    – Or why is the username shown on the members profile since that cannot be changed by anyone?
    – Why is there a field “Username” AND “Name” (which is also required) on the register form? I think having a Username field would be enough which is also automatically the “Nickname”.

    I hope I’m thinking too difficult here and there is some easy explanation.

    Looking forward to someones reply.
    Thanks in advance.

    Justin

    #311279
    shanebp
    Moderator

    From above: You can see it in the language file, buddypress\buddypress.pot

    Use poEdit free version to create a .mo file with your changes.

    #311269
    WIQ
    Participant

    @vabvarun – Thanks for your suggestion, but I need that option because only logged-in users has access to the website.

    However, you gave me an idea :-)….I solved the issue using 2 lightweight plugins: WPS Hide Login to choose my own login-url (which is better) and Restricted Site Access to replace the BuddyPress funtion and choose a custom redirect login-url. Also, the login-page is loading a little faster with these plugins.

    Problem solved. But it would be great when BuddyPress would offer those small features as well.

    #311265
    Varun Dubey
    Participant

    @sygy88 it will need a couple of edits inside the core BuddyPress plugin, you can raise a feature request here https://buddypress.trac.wordpress.org/newticket

    #311263

    In reply to: Activity Page

    onfleekresources
    Participant

    Thank you thank you thank you! I do have an issue when I try to download the BuddyPress Activity Filter it messes up my entire site. It must be conflicting with another plugin. Any thoughts?

    #311262
    Ratalinux
    Participant

    Hello:

    I’m just another one struggling with this issue. After a lot of research over the internet and after being tried all suggestions in other posts, I’m reaching to you to get some help. I already checked:

    – My WordPress installation can send emails (checked al worked).
    – Disable Buddypress and try a new sign in (checked and worked).
    – Buddypress Repair Email tool (done, didn’t solved it).
    – Another emails from buddypress being sent, like new post alerts (checked and worked).

    Seems like there’s something wrong only when a new user signs in and is supposed to get a confirmation email in order to get validated. All other email functions seems to be working fine.

    Thanks!

    #311255

    In reply to: Activity Page

    Varun Dubey
    Participant
    #311254
    Varun Dubey
    Participant

    @peaco link preview is not inbuilt features of BuddyPress.

    #311253
    N33D
    Participant

    Yes, of course. It’s because you need a template in your theme which BuddyPress uses to load the content. This is the list of templates: https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/

    So I do now have buddypress.php template file in my theme which BuddyPress uses to display content.

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