Hello,
cannot do 2 things
1. remove debug info from view source
if(!function_exists('avia_debugging_info')){
function avia_debugging_info() {
//
}
}
I paste this code into the function.php and it did not work
Hey Jon,
Thank you for the inquiry.
We can use the avf_debugging_info filter to remove the content of the debugging info. Please add this code in the functions.php file.
add_filter("avf_debugging_info", function($debug) {
return '';
}, 10, 1);
Related thread: https://kriesi.at/support/topic/hide-debugging-info-verion-4-4-1/#post-991515
Best regards,
Ismael