Viewing 2 replies - 1 through 2 (of 2 total)
  • Julien760, I forced the plugin to load the scripts and now it works just fine. In the bp-custom.php I put the wp_enqueue_scripts:

    function bpxjscripts() {
    	if (!is_admin() && function_exists('bp_core_screen_general_settings')) { 
    
            wp_register_script( 'availability', plugins_url() . '/bp-xtra-signup/js/availability.js', array('jquery'), NULL);
            wp_enqueue_script('availability');
    
            wp_register_script( 'strengthmeter', plugins_url() . '/bp-xtra-signup/js/strengthmeter.js', array('jquery'), NULL);
            wp_enqueue_script('strengthmeter');
    
            wp_register_script( 'emailcheck', plugins_url() . '/bp-xtra-signup/js/email-check.js', array('jquery'), NULL);
            wp_enqueue_script('emailcheck');
    
            wp_register_script( 'emailcompare', plugins_url() . '/bp-xtra-signup/js/email-compare.js', array('jquery'), NULL);
            wp_enqueue_script('emailcompare');
        }
    }
    add_action('wp_enqueue_scripts', 'bpxjscripts');

    I had the same issue and used the fix as state above. This did fix the issue however it has caused the “buddypress like button” to no longer work. Any thoughts?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: BP Xtra Signup] bp xtra sigup doesn't work’ is closed to new replies.