• Resolved saskiaherm

    (@saskiaherm)


    Is there a way to suppress the imgaes in the product list from WooCommerce?

    I’m not selling tangible productsand the images don’t have any added value to me (nor the customers).

    I prefer to just have a list of ‘products’ rather than a catalogue view with images.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @saskiaherm! Thanks for reaching out to us!

    You can try to use a piece of code like this:

    // Remove product images from the shop/single page-loop
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); 

    We recommend, using the Snippet code plugin with a Child theme, you can read more details about how to properly add code to your site/WooCommerce store here:

    https://woocommerce.com/posts/properly-add-woocommerce-custom-code/

    You can also consider using something like a table-product table plugin, like this one:

    https://woocommerce.com/products/product-table-for-woocommerce/

    There are a few other solutions with the same purpose, which are to list all your products, instead of showing them in a grid view.

    You can search for table products for WooCommerce to see some of them.

    Let us know how it goes!

    We’ve not heard back from you in a while, so I’m marking this thread as resolved. Hopefully, the above info was helpful.

    If you have further questions, please feel free to open a new topic.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Suppressing product images’ is closed to new replies.