Home › Forums › WP Simple Member Registration › Registration form not working after upgrading from free version (v3.9) › Reply To: Registration form not working after upgrading from free version (v3.9)
August 20, 2018 at 4:45 pm
#9236
Participant
Fixed the problem, there seems to be an issue within the create_user() method. For some reason the user fields were not being passed through to the filter.
Changed
$wp_core_fields = apply_filters(‘wpr_new_user_core_fields’, ‘wp’);
to
$wp_core_fields = apply_filters(‘wpr_new_user_core_fields’, $wp_core_fields, ‘wp’);