How to disable shopping cart and account icon in menu ,

Why don’t you hide top header if you don’t want to show anything there (Customizer > Header > deactivate “Show Top Nav Bar”)

Instead of hiding top header you can use:

Shopping cart:

Use this css in Customizer > Custon CSS

.top-right-panel {
display: none;
}

Account:

.top-user-panel {
display: none;
}

Hello, further to what Anne-Marie mentioned above, there is also an article here to help removing them individually via code if you would prefer: https://www.support.waituk.com/hc/en-us/articles/115001358345-Remove-Account-Cart-Search-Language-Icons-from-Header

Ty