Hi,
You can hide these modules on that page with CSS.
Normally, if you look at the HTML of the page, you get this:
i.imgur.com/bw5k3HC.png
There, you can see on the "body" tag the classes com_hikashop and view-cart
And then, you need to look at the id for the module you want to hide. For example, the "categories on 2 levels" module on my screenshot has the id hikashop_module_112
So I can use the CSS code below to hide that module only on that page:
.com_hikashop.view-cart #hikashop_module_112 { display:none; }
In your case, you'll have to look for the id of these modules to adapt the code above.
www.hikashop.com/support/documentation/1...ize-the-display.html