Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #383907

    hi this post explains something

    https://kriesi.at/support/topic/source-code-theme-info/

    but it no longer seems to work placing this in my child themes function file. Any ideas what it is now?

    #384329

    Hi codecreative!

    Thank you for using Enfold.

    You can use this on functions.php to remove the debugging info:

    remove_action('wp_head','avia_debugging_info',1000);
    remove_action('admin_print_scripts','avia_debugging_info',1000);

    Best regards,
    Ismael

    #384557

    Hi Ismael

    I’ll try this now. Quick secondary question? How can I find my feature request to see how many votes it has had? I can’t find it or locate it easily

    #384843

    Hey!

    Currently, there is no quick links for your own feature request. There’ s no point checking them when they are not included on the most popular requests.

    Best regards,
    Ismael

    #386165

    Hi that bit of php has been placed in my themes function file but it doesn’t seem to remove the info

    This is from within my child theme functions file

    #386207

    Hey!

    Please add following code to Functions.php file of your Child theme

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

    Cheers!
    Yigit

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