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: 25333

    Hi Jaume,
    I am sorry for the delayed reply. I will update MediaPress to make it honors the default choice.

    I am glad you found the solution for change avatar 🙂

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: Groups Extension #3304

    Hi Joshua,
    That will be difficult. Since this plugin is mostly aimed at providing data, I do’t believe A user can design the page with this plugin.

  • Keymaster
    (BuddyDev Team)
    Posts: 25333

    Hi Dandy,
    Thank you for the details.
    Yes, That is the problem. The above hook is not getting called since you are using WordPress registration not BuddyPress.

    Please try this hook instead of the activate one

    
    user_register
    

    That should make it work.

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: Follow Up To Previous Thread #3302

    Hi Joshua,
    Thank you.
    Can you please post what arguements are you using in your bp_has_activities() function in the custom loop? That will give some idea.

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: [Resolved] Categories for Group Blogs #3301

    Hi Diana,
    Thank you.

    Please give us til tomorrow(We could release an update today) and then, I will belooking for the more details.

    PS: Thank you for buying the support.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: [Resolved] MOve subnav tabs #3297

    @ravi1987,
    Thank you for posting.


    @saran
    ,
    I will add my two points her

    1. Please do not modify this directly in the BuddyPres plugin, Instead copy
    buddypress/bp-templates/bp-legacy/buddypress/members/single/profile.php to yourtheme/ buddypress/bp-templates/bp-legacy/buddypress/members/single/profile.php and then modify it as Ravi has mentioned.

    Also, make a copy of buddypress/bp-templates/bp-legacy/buddypress/members/single/settings/general.php to your theme/buddypress/bp-templates/bp-legacy/buddypress/members/single/settings/general.php and make sure the form action is empty.

    I was testing it with Ravi, it seems he missed it while posting.

    Please do let us know if that works or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333

    Hi Ada,
    Please give us 2 more day. The plugin needs an update and then I will post the code.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: Groups Extension #3291

    Hi Joshua,
    Thank you for posting. The plugin is by @slaffik and you can confidently use it. He is an active member of BuddyPress community, so updates will flow. In case there is no updates, I assure you that Our team will support you on this 🙂

    Please feel free and confident to use the plugin.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: [Resolved] Categories for Group Blogs #3289

    Hi Diana,
    Welcome to BuddyDev.

    I have a few things to share and a few questions before I provide the code

    1. Limiting Categories to selected ones:- It was a bug in Blog Categories for groups. It should have only listed selected terms. We are on it and a fix is due tomorrow.

    Now a few questions:-
    1. Do you still need extra code after the update for listing terms? It will only list the terms(category) selected for the current group

    2. How do we automatically assign categories to the group on creation? Is there any criteria?

    Can you please tell me if the requirements will change after the fix?

    Thank you for showing interest in Buying the support. It was a caching issue. refreshing and re adding will fix that.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333

    Hi Dandy,
    Thank you for asking and your support. I appreciate it.

    Most probably you are using a plugin/code that hooks to the activation code at higher priority and exits the process. Can you please try the following code

    
    
    function buddydev_add_user_to_group( $user_id ) {
    
    	$group_id = 1;//which group to add
    	groups_join_group( $group_id, $user_id );
    }
    add_action( 'bp_core_activated_user', 'buddydev_add_user_to_group', 0 );
    
    

    The only thing different here is higher priority on the action. This should work. Can you please check and let me know if it works or not?

    Thank you
    Brajesh