Hello,
I see 2 solutions for you :
1. Easy and quick => Use some Css to don't display quantity and relative elements with this kind of css command :
.checkout_html_class .quantity_input_class,
.checkout_html_class .quantity_input_plus_class,
.checkout_html_class .quantity_input_minus_class {
display: none;
}
Note : Have a look on
this tutorial
to see how to add custom css to your frontend css files
2. You directly edit your checkout cart
view, this will required
php/html knowledge, and will be more long to implement, but this for sure prevent the input quantity to be used because this will truly able you
completely remove html element that display quantity input elements.
For this have a look on this documentation to create an override view.
Note : To find the
required view to custom, you can use the display view file, from
Main HikaShop Configuration, in
Advanced tab
Hope this will help you to achieved what you need.
Regards