• El plugin contiene un error en el archivo common.js, que generar un llamado de API pagina 404.

    Este problema pone a la pagina excesivamente lenta. de un rendimiento de 100% baja al 70%.

    No se porque el plugin llama por API cuando el usuario esta fuera de la tienda, esto deberia resolverse inmediatamente.

    jQuery(document).ready( function($) {
        $(".bank_payment_receipt").change( function() {
            var fd = new FormData();
            fd.append('file', $('.bank_payment_receipt')[0].files[0]);
            fd.append('action', 'invoice_response');  
            
            $.ajax({
                type: 'POST',
                url: the_ajax_script.ajaxurl,
                data: fd,
                contentType: false,
                processData: false,
                success: function(response){
                    console.log(response);
                }
            });
        });
    });
  • The topic ‘Error common’ is closed to new replies.