Replies
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
RaviHello Brandon,
Try the following code.
.bpajax-register-window p.description { color: #fff !important; }
Thank You
RaviHello 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
RaviHello 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
RaviHello 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
RaviHello 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
RaviHello 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
RaviHello 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- Ravi on May 10, 2017 at 7:14 am in reply to: [Resolved] Issues about BuddyPress Extended Friendship Request #9059
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 - Ravi on May 9, 2017 at 7:16 pm in reply to: [Resolved] Issues about BuddyPress Extended Friendship Request #9053
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