BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BP Ajax Registration – Displaying Issue #10350

    Hello Brandon,

    I have updated the plugin on BuddyDev. Please download and activate the latest ‘BuddyPress ajax registration’ plugin and let me know if works or not.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BP Ajax Registration – Displaying Issue #10347

    Hello Brandon,

    Try the following code.

    
    .bpajax-register-window p.description {
        color: #fff !important;
    }
    
    

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BP Ajax Registration – Displaying Issue #10345

    Hello Brandon,

    Thank you for posting. Please put the following code at the botton of your current theme css file

    
    .bpajax-register-window legend {
        color: #fff !important;
        border: none !important;
        margin: 15px 0 5px 0 !important;
        font-size: inherit !important;
    }
    
    

    Make sure modified file is loading. Let me know if it works or not .

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] remove activity delete button text #10143

    Hello Ahmed,

    Thank for posting. There will be no errors due to your function. It will hide delete button all over the places like member’s activity, group’s activity etc.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Activity Lock and Notification #9843

    Hello Clyn,

    I have updated the plugin. Please download the latest version of plugin from the following url

    https://buddydev.com/plugins/bp-lock-unlock-activity/

    And check if the issue still persists or not. Please let me know.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Activity Lock and Notification #9842

    Hello Clyn,

    Sorry for the inconvenience. I have checked and Yes, this is really a bug. I will update it and will let you know.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Member Type Email & Configuration #9489

    Hello Mohammad,

    Brajesh sir is away that is why I am posting here. Try the following code in your bp-custom.php file and let me know if it works or not.

    
    function buddydev_assign_member_type_on_registration( $user_id ) {
    
    	// replace =gender with your field name
    	$gender = $_POST['gender'];
    
    	if ( ! empty( $gender ) ) {
    		if ( 'male' == $gender ) {
    			bp_set_member_type( $user_id, 'member_type_name' );
    		} elseif ( 'female' == $gender ) {
    			bp_set_member_type( $user_id, 'member_type_name' );
    		}
    	}
    }
    add_action( 'user_register', 'buddydev_assign_member_type_on_registration', 10, 1 );
    
    

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Buddy Press Member Type Generator support #9472

    Hello Climates,

    Thank you for posting here. Have you tried after deactivating the plugin. Is the issue still persist or not. Please let me know Because it is default behaviour of BuddyPress where a visitor or logged-in user can view other user’s profile and other allowed user’s components.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Dandy,

    Issue #1. Yes, Your theme is conflicting and hiding the close button. Please put the following code in your theme “styles.css” file to show the button

    
    .bpdev-popover .bpdev-popover-close {
       z-index: inherit;
     }
    
    

    Issue #2. To achieve the functionality we need to modify plugin’s js file.

    Please insert the following after line no. 216 in file name “bp-extended-friendship-request.js”

    
    popup.hide(300, 'swing');
    
    

    clean the browser cache and test it. Let me know if it works or not.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Dandy,

    Thank You posting. Cross button is already there to close the popup button. I think there might be chances that your theme hiding the button. Please test with other wordpress default theme and let me know if the issue still persist or not.

    Thank You
    Ravi