Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #415114

    How can I use this line in a child theme’s function.php?
    remove_action(‘wp_head’,’avia_debugging_info’,1000);

    Thanks!
    Lukas

    #415197

    Hey LukasE!

    Thank you for using Enfold.

    You can add this to the functions.php file:

    add_action('init','avia_remove_debug');
    function avia_remove_debug(){
    	remove_action('wp_head','avia_debugging_info',1000);
    	remove_action('admin_print_scripts','avia_debugging_info',1000);
    }

    Regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.