Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 756 total)
  • @prashantvatsh

    Participant

    I have tested from both the users and also as a guest, groups are getting sorted alphabetically.

    Please try to clear your cache. Also, check if everything you did for sorting is reverted except the code which I gave.

    @prashantvatsh

    Participant

    Hi

    Please revert this

    I basically reordered the options in the php file. and It worked to some extent.

    and put the following code in your bp-custom.php file or child theme’s functions.php file:

    add_filter( 'bp_nouveau_get_groups_filters', function( $filters, $context ){
    	return array_reverse( $filters, true );
    },10,2);

    I hope this will help you.

    @prashantvatsh

    Participant

    @prashantvatsh

    Participant
    function ps_mine_activity_args( $args ) {
     
        if ( ! bp_is_activity_directory() || ! is_user_logged_in() || ! empty( $args['scope'] ) ) {
            return $args;
        }
     
        $user_id = get_current_user_id();
     
        $args['user_id'] = $user_id;
     
        return $args;
    
    }
    add_filter( 'bp_after_has_activities_parse_args', 'ps_mine_activity_args' );

    Please put the above given code in your bp-custom.php file or in your child theme’s functions.php file.

    Hope that it will show only logged-in user’s activities in the sitewide activity stream.

    @prashantvatsh

    Participant

    @prashantvatsh

    Participant

    Hi,

    Please check this plugin https://wordpress.org/plugins/buddypress-followers/

    Thanks

    @prashantvatsh

    Participant

    @prashantvatsh

    Participant

    Hi,

    There’s a setting in BuddyPress for auto-refresh https://prnt.sc/s5kof3

    Please check if this helps you.

    @prashantvatsh

    Participant

    Hi,

    Please check this: https://wordpress.stackexchange.com/questions/6664/how-to-auto-accept-a-friend-request-in-buddypress-based-on-user-meta

    Please remove the condition of is_user_expert and check after that. You should try this on the dev/staging version of your site and if it works for you then you can use it on your live site.

    For members addition in a group automatically, please check this one https://buddypress.org/support/topic/how-to-add-new-members-to-groups-automatically/

    Hope it will help you.

    @prashantvatsh

    Participant

    Hi

    I think you are looking for this https://wordpress.org/plugins/bp-user-profile-reviews/ but this was last updated a year ago so please test it once on staging or localhost before going live.

    Thanks

    @prashantvatsh

    Participant

    Hi

    If it is not created then please create a page with the name ‘Members’ https://prnt.sc/qno0jj and assign it here https://prnt.sc/qno0l4 then you can see that page in the menu panel.

    Thanks

    @prashantvatsh

    Participant

    Hi,

    Please check if the page is created under pages and also if it is assigned in BuddyPress settings.

    Thanks

    @prashantvatsh

    Participant

    Hi,

    I guess it is not possible to tag all members at once. Although this one https://buddypress.org/support/topic/how-mention-all-members/ is old but just to check the reason why ‘all mention’ is not recommended you can see that. The plugin mentioned there is very old and hasn’t been tested with the latest 3 major releases so be careful to use it.

    Thanks

    @prashantvatsh

    Participant

    Hi,

    You can mark that group as a featured group using this plugin https://wordpress.org/plugins/bp-featured-groups/ and then can show that on your page using the shortcode provided.

    I hope this will help you.

    Thanks

    @prashantvatsh

    Participant

    Hi @dfcday

    I think you are looking for this solution https://buddydev.com/plugins/bp-non-editable-profile-fields/

    Hope this will help.

    @prashantvatsh

    Participant

    Hi,

    Please try this code.

    function ps_groups_per_page( $loop ) {
    if ( bp_is_groups_directory() ) {
    $loop['per_page'] = '40';
    }
    return $loop;
    }
    add_filter( 'bp_after_has_groups_parse_args', 'ps_groups_per_page');

    You can paste this code in your child theme’s functions.php file or just create bp-custom.php(https://codex.buddypress.org/themes/bp-custom-php/) and paste it there.

    Thanks

    @prashantvatsh

    Participant

    Hi,

    Can you please confirm if you are getting the id of the group in this variable $gid?

    Thanks

    @prashantvatsh

    Participant

    Hi,

    It’s because you forgot to use this function https://prnt.sc/ohpc6z

    You have created it but have not used it. It returns the value of saved meta.

    So now you have to replace this line:

    
    <textarea name="group-guidelines" id="group-guidelines" aria-required="true"></textarea>
    

    with this

    
    <textarea name="group-guidelines" id="group-guidelines" aria-required="true"><?php echo custom_field('group-guidelines'); ?></textarea>
    

    and this line:

    <textarea name="group-aims" id="group-aims" aria-required="true"></textarea>

    with this

    <textarea name="group-aims" id="group-aims" aria-required="true"><?php echo custom_field('group-aims'); ?></textarea>

    Thanks

    @prashantvatsh

    Participant

    Hi,

    If you need a different color then you have to use the element class and add a CSS rule for it.

    For example:

    
    .your_class_name_here{
      background: your_color_code_here;
    }
    

    Thanks

    @prashantvatsh

    Participant

    Hi,

    Have you checked if the issue remains with any default theme, like twenty nineteen, in use?

    Please have a full backup of your site and then try switching the theme to test this.

    Thanks

    @prashantvatsh

    Participant

    @prashantvatsh

    Participant

    Yes, please try that and if there is any browser cache clear that too.

    @prashantvatsh

    Participant

    It’s very strange. I can see it perfectly fine with just BuddyPress and Twenty Nineteen theme activated. Can you please try changing the theme to twenty seventeen and then check if it is coming there?

    @prashantvatsh

    Participant

    Please have a backup first and then try deactivating plugins except for BuddyPress.

    @prashantvatsh

    Participant

    Ok, please check if your_site_url/groups/create/ this is leading you towards a group creation or not. If not then there is a possibility that any other plugin is creating the conflict here.

Viewing 25 replies - 1 through 25 (of 756 total)
Skip to toolbar