Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1427229

    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

    #1427231

    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;
    }
    #1427249

    Thank you so much.

    #1427258

    Hi,

    Thanks for helping out @guenni007 :-)

    Best regards,
    Rikard

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