Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25482

    Hi Daniel,
    I have looked at your site today.

    1. I see that New Post tab is disabled
    2. I only see the add new post link(inside template).

    Like I said earlier, a better strategy will be to redirect instead. I will share the code today for redirecting the user. If possible, Please tell me how your other plugin expects the post id to be passed for editing.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25482
    Brajesh Singh on in reply to: [Resolved] bursting relationship #20573

    Hi Herve,
    It is a common issue on BuddyPress. There are bots to do it.
    This is why we created Friendship restrictions plugin.

    You do have our membership, so I will suggest using

    https://buddydev.com/plugins/buddypress-friendship-restrictions/

    Just rate limit the number of requests a user can send per hour and it will limit the damage.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25482

    Hi George,
    My apologies for the inconvenience.

    In the last update, we forced the query to show posts which were published from current group only.

    We did it to resolve the issue when 2 groups share same terms.

    Is there a chance that the posts were not published from group screen?

    You can disable the meta query to get it working. The following code should do it.

    
    
    /**
     * Disable meta filtering for group id and published fro m front.
     */
    add_filter( 'bcg_get_query', function ( $query_args ) {
    	unset( $query_args['meta_query'] );
    
    	return $query_args;
    } );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25482

    Hi Nate,
    Thank you.

    I a sorry but the plugin will not work. I am not sure if it is your theme or some plugin but the fields on registration form are not using the standard markup(editfield class and other classes etc). The plugin expects those standard classes to work around the condition.

    Please try the same with the default WordPress theme and without other plugin modifying registration page.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25482

    Thank you.
    Can you please disable the Perl header Builder plugin temporarily. It is throwing a javascript error and that may cause it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25482
    Brajesh Singh on in reply to: .mov upload #20558

    Hi Steve,
    I am sorry for the delayed reply.

    Can you please provide more etails. What kind of issue are you facing?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25482
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25482
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25482

    Hi Nate,
    My apologies for the inconvenience.

    It seems to me your theme is styling the checkbox/radios using javascript.

    The Conditional profile fields does not work with custom checkboxes/radios. Please point me to your site and I can check and let you know if your theme is using styled checkboxes/radio or not.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25482

    You can name the field anything. It is a select/radio field that allows selecting one or more type. You can name it anything you want.

    The plugin can not auto update member type based on when a user moves. You will need to handle this case via core or a better strategy is to create member types of these values and let the user update their profile when they move.

    A member type can be anything, It is just a way to orgnize your users.

    Regards
    Brajesh