Tagged: hide theme name, hide theme version, hide version
Hi,
How can I hide the theme version and name? I dont want to show these info:
<!–
Debugging Info for Theme support:
Theme: Enfold
Version: 5.6.8
Installed: xxxxxxx
AviaFramework Version: 5.6
AviaBuilder Version: 5.3
aviaElementManager Version: 1.0.1
ML:2048-PU:31-PLA:10
WP:6.4.1
Compress: CSS:all theme files – JS:all theme files
Updates: disabled
PLAu:9
–>
Thanks
put this to your child-theme functions.php:
add_filter('avf_debugging_info', 'remove_debugging_info', 10, 1);
function remove_debugging_info($info) {
return false;
}
Thank you so much.