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

    Hello,
    I want to remove information on the topic.
    In a previous post you reply that the solution is to put the following code in functions.php of the child theme:
    remove_action (‘wp_head’, ‘avia_debugging_info’, 1000);
    However, it is not working. Can you help me?
    Thank you.

    #230951

    Hi Alexandre!

    Try with this code:

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

    Cheers!
    Josue

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