Bestellstatus in der Kunden-Ansicht entfernen

Hallo liebe Community,

ich suche schon seit Stunden und komme einfach nicht weiter. Ich möchte in der Bestellübersicht des Kunden die Icons und den Bestellstatus entfernen.
Die Icons habe ich schon aus der account.less entfernt. Das hat super geklappt. Aber ich finde einfach nicht raus wo ich den Bestellstaus komplett löschen kann.

Über Eure hilfe würde ich mich sehr freuen.

Gruß,
Markus.

Vielleicht hilft dir das weiter:

 

Danke R4M,

ich habe es jetzt doch etwas anders gelöst.

Und zwar habe ich eine account.less in …/themes/Frontend/DEINTHEME/frontend/_public/src/less/_modules

mit diesem Inhalt angelegt:

/*
1. Icons in der Bestellübersicht ausblenden 
2. Bestellstatus in der Bestellübersicht ausblenden = .column--label
*/



/*
1.
*/

.order--status-icon { display: none; }

/*
2.
*/

	// Select Address
.account--orders-overview {
        .orders--table-header {
            display: block;
        }

        .panel--tr {
            padding: 0;
            border-width: 0 0 1px 0;

            &.order--repeat {
                .unitize-padding(20, 20);
            }
        }
        .panel--td {
            .unitize-padding(10, 10);
            display: inline-block;
            float: left;
        }

        .column--label {
            display: none;
        }

        .column--value {
            width: 100%;
            float: none;
        }

        .column--summary-labels,
        .column--summary-data {
            width: 20%;
            text-align: right;
        }

        .column--date,
        .column--id,
        .column--dispatch {
            width: 20%;
        }
        .column--status {
            display: none;
        }
        .column--actions {
            width: 15%;

            .btn {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 100%;
            }
        }
        .column--name {
            width: 50%;
        }
        .column--quantity {
            width: 10%;
        }
        .column--price {
            width: 20%;
        }
        .column--total {
            width: 20%;
        }
        .column--info-labels {
            width: 20%;
        }
        .column--info-data {
            width: 40%;
        }
    }

 

 

 

Danke nochmal für die schnelle Hilfe. Ich war echt schon am verzweifeln. Und vielleicht hilft es doch nochmal jemanden anderen.

Gruß,
Markus

Ps.:Wenn jemand eine besser und saubere Lösung hat immer her damit. Bin für alles Dankbar.