Hi, how can I hide the fact that my site is running on Enfold from the source code?
Thanks.
Hey DROR!
Please see – http://kriesi.at/documentation/enfold/remove-avia-framework-debug-information/
Regards,
Yigit
I added that but I can still see the theme in the source code just as before.
Hi!
Can you please post the link to your website? Are you using a child theme? If so, please use following one
function avia_remove_debug() {
remove_action('wp_head','avia_debugging_info',1000);
}
add_action( 'init', 'avia_remove_debug');
Regards,
Yigit
Sorry, it works fine. I thought it would do something else.
Thanks.