How to change realted product thumbnail size in woocommerce single product page wordpress
For change the related product thumbnail size in single product page woocommerce paste below code in your theme's functions.php file below code is tested and works fine. add_action( 'after_setup_theme', 'rj_remove_loop_thumbnail_filter', 10 ); function rj_remove_loop_thumbnail_filter() { remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); } add_filter('woocommerce_related_products_args','rj_related_product_args'); function rj_related_product_args($query_args) { if( is_singular( 'product' ) ) { if( ! empty( $query_args ) ) { set_query_var( 'related_products', true ); } } return $query_args; } remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); add_action(...