Viewing 2 replies - 1 through 2 (of 2 total)
  • I am experiencing the same issue. I too “fixed” it by adding a function in a custom function:

    add_action('plugins_loaded', function(){
        if (!function_exists('bp_registration_options_admin_footer')) {
            function bp_registration_options_admin_footer() {
                error_log("Fix: undefined function called 'bp_registration_options_admin_footer'");
            }
        }
    });

    I’m having this issue as well. For me it shows up as “Method not allowed” when trying to log in through a buddypress login button at the bottom of a forum.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘function bp_registration_options_admin_footer() Missing’ is closed to new replies.