Viewing 1 post (of 1 total)
  • Author
    Posts
  • #1497037

    Can you please set the attribute for #main
    Pagespeed Insights is always complaining:

    if i temporarly insert on child-theme functions.php :

    function add_role_main_to_enfold_buffer() {
        ob_start( function( $buffer ) {
            // Sucht nach id='main' oder id="main" und fügt role="main" hinzu
            $buffer = str_replace("id='main'", "id='main' role='main'", $buffer);
            $buffer = str_replace('id="main"', 'id="main" role="main"', $buffer);
            return $buffer;
        });
    }
    add_action( 'template_redirect', 'add_role_main_to_enfold_buffer' );

    i will have even on best practice the: 100

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.