¿Cómo deshabilitar una búsqueda / filtro en una columna específica en una tabla de datos?

Mi tabla de datos tiene 5 columnas y necesito deshabilitar el filtrado para la tercera, cuarta y última columna.

¡¡¡por favor ayuda!!!

este es el javascript:

<script type="text/javascript" language="javascript" class="init">
        $(document).ready(function() {

            // Setup - add a text input to each footer cell
            $('#example tfoot th').each( function () {
                var title = $('#example thead th').eq( $(this).index() ).text();
                $(this).html( '<input type="text" placeholder="Search '+title+'" />' );
            } );

            // DataTable
            var table = $('#example').DataTable();

            // Apply the search
            table.columns().eq( 0 ).each( function ( colIdx ) {
                $( 'input', table.column( colIdx ).footer() ).on( 'keyup change', function () {
                    table
                        .column( colIdx )
                        .search( this.value )
                        .draw();
                } );
            } );
        } );
</script>

Respuestas a la pregunta(2)

Su respuesta a la pregunta