Replies
Viewing 10 posts - 2,241 through 2,250 (of 19,158 total)
- Brajesh Singh on January 8, 2023 at 11:49 pm in reply to: Hide Members tab for specific group with User Profile tab creator Plugin? #47894
Hi Soren,
Thank you for the question.Please use Group Tabs Creator to do that. You already purchased it couple of months ago.
Let me know if you face any issue.
Regards
Brajesh - Brajesh Singh on January 8, 2023 at 11:39 pm in reply to: My BuddyPress Editable Activity plugin isn’t working #47892This reply has been marked as private.
- Brajesh Singh on January 8, 2023 at 11:14 pm in reply to: [Resolved] Nothing uploads – images, audio, videos, documents #47889This reply has been marked as private.
- Brajesh Singh on January 8, 2023 at 11:10 pm in reply to: My BuddyPress Editable Activity plugin isn’t working #47888This reply has been marked as private.
- Brajesh Singh on January 8, 2023 at 11:26 am in reply to: [Resolved] Issues with settings in BuddyPress Private Message Rate Limiter #47883
Hi Nifty,
I am sorry for the inconvenience.We introduced a new settings panel and it seems that it did not work properly. Can you please update the settings from the new panel and see if that works?
Regards
Brajesh - This reply has been marked as private.
- Brajesh Singh on January 8, 2023 at 12:58 am in reply to: [Resolved] Nothing uploads – images, audio, videos, documents #47878
You are welcome 🙂
- Brajesh Singh on January 8, 2023 at 12:51 am in reply to: Passing Custom Taxonomy Multiselector values to tax_input args of wp_insert_post #47877
Hi,
You are accessing the formatted value for display.Please use the raw value using
$values = maybe_unserialize( BP_XProfile_ProfileData::get_value_byid( $field_id, $user_id ) );Regards
Brajesh - Brajesh Singh on January 8, 2023 at 12:48 am in reply to: [Resolved] BuddyPress Registration Control #47876
Hi Tosin,
The problem with above code is the option group name and section name.Please find it updated here.
<?php /* * Plugin Name: BuddyPress Registration Control * Description: Allows administrators to enable or disable user registration and select a URL to redirect to when registration is disabled. * Version: 1.0 */ // Register the new setting in the BuddyPress options group function custom_bp_register_settings() { register_setting( 'buddypress', 'bp-disable-site-registration', 'sanitize_text_field' ); register_setting( 'buddypress', 'bp-disable-site-registration-redirection-url', 'sanitize_text_field' ); } add_action( 'bp_register_admin_settings', 'custom_bp_register_settings' ); // Add the new setting to the BuddyPress options page function custom_bp_add_settings_field() { add_settings_field( 'bp-disable-site-registration', __( 'Registration', 'buddypress' ), 'custom_bp_settings_field_html', 'buddypress', 'bp_main', array( 'label_for' => 'bp-disable-site-registration', ) ); add_settings_field( 'bp-disable-site-registration-redirection-url', __( 'Redirection URL', 'buddypress' ), 'custom_bp_settings_redirection_url_html', 'buddypress', 'bp_main', array( 'label_for' => 'bp-disable-site-registration-redirection-url', ) ); } add_action( 'bp_register_admin_settings', 'custom_bp_add_settings_field', 10, 1 ); // Output the HTML for the setting field function custom_bp_settings_field_html() { $value = get_option( 'bp-disable-site-registration', 'open' ); ?> <select name="bp-disable-site-registration" id="bp-disable-site-registration"> <option value="open" <?php selected( $value, 'open' ); ?>><?php _e( 'Open', 'buddypress' ); ?></option> <option value="closed" <?php selected( $value, 'closed' ); ?>><?php _e( 'Closed', 'buddypress' ); ?></option> </select> <?php } // Output the HTML for the redirection URL field function custom_bp_settings_redirection_url_html() { $value = get_option( 'bp-disable-site-registration-redirection-url' ); ?> <input type="text" name="bp-disable-site-registration-redirection-url" id="bp-disable-site-registration-redirection-url" value="<?php echo esc_attr( $value ); ?>" /> <?php } // Redirect users if registration is closed function custom_bp_redirect_registration() { if ( get_option( 'bp-disable-site-registration' ) === 'closed' ) { wp_redirect( get_option( 'bp-disable-site-registration-redirection-url' ) ); exit; } } add_action( 'bp_screens', 'custom_bp_redirect_registration' );I did not go through other sections of your code. In case you need assistance there, I can look into that.
Regards
Brajesh - Brajesh Singh on January 8, 2023 at 12:38 am in reply to: [Resolved] Users are able to message blocked and suspended users if you have the direct URL #47875This reply has been marked as private.