WPML
Stato
Aperto
Plugin/tema correlato
The Events Calendar
Tag dell’argomento
Compatibility

Panoramica del problema

Quando usi The Events Calendar con Event Tickets, potresti riscontrare un errore 404 durante il pagamento al checkout, con il messaggio “No route was found matching the URL and request method”.

Soluzione alternativa

Assicurati di avere un backup completo del tuo sito prima di procedere.


  • Aggiungi il seguente codice al file functions.php del tuo tema:
    add_filter( 'rest_url', 'fix_rest_url_double_slash', 5, 4 );
      function fix_rest_url_double_slash( $url, $path, $blog_id, $scheme ) {
      // Replace multiple slashes with one, but keep https://
    return preg_replace( '#(?<!:)//+#', '/', $url );
    }
    
         

Tutti i problemi noti →