banner

Sabuj Kundu 24th Aug 2016

There is high possibility that you are here because you read other blog post but they didn’t work as it happened with me, so I thought to write a blog post.

As per latest version of woocommerce, it itself hooks the post_class and add the ‘last’ and ‘fist’ class

add_filter( 'post_class', 'wc_product_post_class', 20, 3 );

So, if you hook post_class to remove first and last class then either you can remove the filter or you can add another filter

https://gist.github.com/manchumahara/ca1d84cf9cb47320925c2f8a1eabebcc

Here is a ref to this issue