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

    Hi, just wonder how to remove the debug information in the theme as below, thanks in advance!

    <!–

    Debugging Info for Theme support:

    Theme: Enfold

    Version: 1.9.1

    Installed: enfold

    AviaFramework Version: 1.8

    AviaBuilder Version: 0.3

    ML:128-PU:7-PLA:5

    –>

    #134342

    Hi,

    Please add this at the very bottom of the functions.php file:

    add_filter('avf_debugging_info', 'remove_debugging_info', $info);
    function remove_debugging_info($info) {
    $info = '';
    return $info;
    }

    Regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘how to remove the debug information’ is closed to new replies.