codemodeio
Forum Replies Created
-
I am also facing the same issue as everyone else in this thread. I am getting the error message “ERROR: something went wrong with that!” This only appears to happen infrequently, seemingly at random. I’ve had several users report having the same issue as well. I have only been able to duplicate the issue once, and I tried deactivating and reactivating the plugin, as the user above me suggested.
This seemed to work until today. I am getting another user reporting the same issue. I am not able to duplicate the issue this time but this is clearly an ongoing issue.
Frontend Reset Password v 1.2.1
WordPress v 6.1.1Forum: Plugins
In reply to: [Category Ajax Filter] URL Parameters & Text Overlay on HoverI do not have any missed messages from you on Skype. I tried to contact you via Skype on June 15, 2022 and have not received a response.
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Admin Email NotificationsThe missing ; was not the issue. This is the email I am receiving:
[email protected] ( [email protected] ) would like to become a member of your website. To accept or reject their request, please go to Member Requests
I have one admin email that I am trying to send these emails to. That email is the admin email of the site. The plugin is currently sending emails to every admin of the site.
When I add the code above, using 3 real emails instead of “[email protected]” I am getting very strange behavior. If I enter the desired admin email, followed by 2 real email addresses, every admin gets the email. If I leave out the desired email address and replace with 3 real email addresses, I get the email sent only to the desired email (which was excluded) and the first email in the list of the code. The other 2 emails in the code do not receive the email.
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Admin Email NotificationsThis is still not working as intended. I’ve replaced the email addresses, but it is still sending emails to the main site admin (which is not listed), then the first email address in that list, but none of the others.
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Admin Email NotificationsFollowing up on this thread. I am attempting to use the snipped above to manually add several email addresses to send the New Member Approval emails to. I have copy/pasted the snippet above for eberswine and replaced the email addresses with my own, however the emails are not being sent when creating new users. When I remove the above snippet, all admins are sent the email when a new user is created.
Below is my custom functions in my functions.php file.
/****************************** CUSTOM FUNCTIONS ******************************/ // Add your own custom functions here function bb_remove_password_strength() { if ( wp_script_is( 'wc-password-strength-meter', 'enqueued' ) ) { wp_dequeue_script( 'wc-password-strength-meter' ); } } //add_action( 'wp_print_scripts', 'bb_remove_password_strength', 100 ); function custom_remove_password_strength() { if ( wp_script_is( 'bp-nouveau-password-verify', 'enqueued' ) ) { wp_dequeue_script( 'bp-nouveau-password-verify' ); } } add_action( 'wp_print_scripts', 'custom_remove_password_strength', 100 ); function year_shortcode() { $year = date('Y'); return $year; } add_shortcode('year', 'year_shortcode'); function eberswine_bpro_single_admin_notice( $default_admins ) { // BuddyPress Registration Options will be expecting an array. $new_admins = array(); $new_admins[] = '[email protected]'; $new_admins[] = '[email protected]'; $new_admins[] = '[email protected]'; return $new_admins; } add_filter( 'bprwg_bp_notification_users', 'eberswine_bpro_single_admin_notice' );