Viewing 1 replies (of 1 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    You can disable AJAX by removing the data-ajax attribute from any form:

    
    add_action( 'init', function () {
        if ( $form = tml_get_form( 'login' ) ) {
            $form->remove_attribute( 'data-ajax' );
        }
    } );
    
Viewing 1 replies (of 1 total)
  • The topic ‘CORS issue’ is closed to new replies.