The fix was pasting the code snippet below into the themes functions.php file.
/**
* Enable user registration
*/
function enable_user_registration() {
add_filter( ‘pre_option_users_can_register’, ‘__return_true’ );
}
add_action( ‘after_setup_theme’, ‘enable_user_registration’ );