1. Home
  2. Knowledge Base
  3. WooCommerce Product Add-Ons Ultimate
  4. Advanced Topics for Add-Ons Ultimate
  5. Cart and Order
  6. Remove uploaded image thumbnails from cart and/or order
  1. Home
  2. Knowledge Base
  3. WooCommerce Product Add-Ons Ultimate
  4. Remove uploaded image thumbnails from cart and/or order

Remove uploaded image thumbnails from cart and/or order

If you’d like to remove thumbnails for uploaded images in the cart and/or order pages for WooCommerce Product Add-Ons Ultimate, just use the following snippet:

<?php
/**
* Remove thumbs from cart
*/
add_filter( 'pewc_show_link_only_cart', '__return_true' );
/**
* Remove thumbs from order page
*/
add_filter( 'pewc_remove_thumbs_in_order_page', '__return_true' );
view raw gistfile1.txt hosted with ❤ by GitHub

Here’s how to add the snippet.

Was this article helpful?

Related Articles