Is there a way to avoid Fancybox 3 from automatically appending the query string "fancybox=true"?
Thanks
There is an option ajax
that you can use to customize your ajax requests, this is the default value:
ajax: {
// Object containing settings for ajax request
settings: {
// This helps to indicate that request comes from the modal
// Feel free to change naming
data: {
fancybox: true
}
}
}