Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter wesleybusacker

    (@wesleybusacker)

    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’ );

Viewing 1 replies (of 1 total)