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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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' ); |
Here’s how to add the snippet.