Created
May 4, 2017 18:33
-
-
Save mklasen/d75934df99489a139b546b79525ff743 to your computer and use it in GitHub Desktop.
Remove woocommerce product thumbnail from loop
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 | |
add_action('woocommerce_init', function() { | |
remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment