php - Remove WooCommerce product image from Wordpress -


i’m trying remove woocommerce product image in wp page (i'm using estore template). don’t need product image shown, when remove product image using following php snippet, blank space image supposed be, , looks terrible:

remove_action( ‘woocommerce_product_thumbnails’, ‘woocommerce_show_product_thumbnails’, 20 ); 

i've tried remove image placeholder inserting following css snippet, nothing happens:

.single-product .product .summary {     width: 100% !important;     float: none !important; } 

could please give me guidance on this?

note - code come from: remove woocommerce image

just make image gallery area display nothing , 100% should fill area. tried following css on default template , worked me:

.single-product .product .images { display:none; } 

and here example page wondering:

https://demo.themegrill.com/estore/product/shoe-for-men/

koda


Comments

Popular posts from this blog

ios - MKAnnotationView layer is not of expected type: MKLayer -

ZeroMQ on Windows, with Qt Creator -

unity3d - Unity SceneManager.LoadScene quits application -