Magento – Hide small images on frontend Magento 2

magento2media-imagesproduct-images

I have Magento 2 and want to hide small images of the product that is added from the admin on frontend. I have hidden the small image attribute from admin but want to hide it from front-end as well.

Best Answer

You can try with either CODE or CSS

1) Changing / Adding code in your extended view.xml

Can find at below path or if not present then you can create

app/design/frontend/vendor-name/theme-name/etc/view.xml

Add below code

<vars module="Magento_Catalog">
    <var name="gallery">
        <var name="nav">false</var> <!-- Gallery navigation style (false/thumbs/dots) -->
    </var>
</vars>

Keep your cache disable or clear your cache

2) Using CSS in you custom style sheet

.fotorama__nav{display:none;}

Perform whatever things you do for using custom CSS to work

I hope this will get you desired solution