Support

Account

Home Forums Backend Issues (wp-admin) Validation URL domain Reply To: Validation URL domain

  • You can’t echo anything in your filter. These filters are run using AJAX and the output you’re creating is probably causing an error in the what it returned by the AJAX request.

    If you want to see what’s going on in your script you can use the error log,

    like this

    
    error_log('$parse['host']);
    

    then you can look in the error log on your server to see it.