Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

  • kemmieg
    Participant

    @kemmieg

    I found the function to make this work but I don’t know how to exclude the updated profile

    function bp_plugin_dont_save_minis( $activity_object ) {
        // friendship_created is fired when a member accepts a friend request
        // joined_group is fired when a member joins a group.
        $exclude = array( 'friendship_created', 'joined_group');
     
        // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function
        if( in_array( $activity_object->type, $exclude ) )
            $activity_object->type = false;
     
    }
     
    add_action('bp_activity_before_save', 'bp_plugin_dont_save_minis', 10, 1 );

    kemmieg
    Participant

    @kemmieg

    I need it to happen during the registration process when they don’t have a user ID and it needs to add them to the group based on a drop down field in Gravity Forms.


    kemmieg
    Participant

    @kemmieg

    Is there anyone out there who can solve this mystery for me? I have deactivated all my plugins and tried using the 2014 theme and the multiselect still isn’t working. I really don’t want to use checkboxes because this information needs to show on the members directory.

    I don’t know what else to do.

    Thank you


    kemmieg
    Participant

    @kemmieg

    All of a sudden the multi-select stopped working again. I’ve deactivated any new plugins that I added after it started working but still no success. I really need the multi-select to work because there are too many choices to do checkboxes.


    kemmieg
    Participant

    @kemmieg

    I got the multi select to work on the single profile page but for some reason it’s not letting me put the data into the members loop.


    kemmieg
    Participant

    @kemmieg

    I am using X2 Premium theme and multiple plugins. One of them is S2 Member for registration. I didn’t even think about a plugin issue. I’ll deactivate the plugins and see if I can find the problem that way and if not I’ll get back to you. Will probably take some time since site is live and I’ll need to take it offline while I do this.


    kemmieg
    Participant

    @kemmieg

    Has anyone found out what the problem is with this? I have a client whose site won’t work without the ability to do this. The multi-select field is a required field and I don’t want to use check boxes because there are too many choices.

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