Client Zone

Home » Client Zone

My "Login to cPanel" or other submit buttons are not working on the client area Print

  • 2

To rectify this issue you will need to add the following to your "Custom JavaScript" box in WHMCS Bridge Settings:

jQuery().ready(function() {
    jQuery('#bridge input[type="submit"]').click(function() {
        if (!jQuery(this).is(':disabled')) {
            jQuery(this).closest('form').submit();
        }
    });
});

Click on Save Settings.

Your problem should now be resolved, along with any other similar submit button issues not activating. 

Was this answer helpful?

« Back