Thumbnail Selection Area On Inventory

On the admin panel, I don't want the thumbnail selection area to be shown on the inventory part of my products. Is there a way to do this?

design/backend/templates/views/product_options/inventory.tpl

remove the following code and clear cache

 {include file="common/attach_images.tpl" image_name="combinations" image_object_type="product_option" image_pair=$i.image_pairs image_object_id=$i.combination_hash image_key=$i.combination_hash icon_title=__("additional__option_thumbnail") no_thumbnail=true}

Great! Thanks.

And another question if you don't mind!
I also want to see the variants not vertically placed, but horizontally as below, is that possible?

You can try to add the float:left style to each div with the control-group class in the same file

Worked fine! Thank you.