Hi,
Please try to use given below code at functions.php under theme directory .
function woo_related_products_attr() {
global $product;
$args = array(
'post_type' => 'product',
'no_found_rows' => 1,
'posts_per_page' => 6,
'ignore_sticky_posts' => 1,
'orderby' => $orderby,
'post__in' => $related,
'post__not_in' => array($product->id),
'woocommerce_attributes' => 'attribute_slug',// please replace with color,size etc
);
return $args;
}
add_filter( 'woocommerce_related_products_args', 'woo_related_products_attr' );
Hopefully that should work and let me know your feedback .
Thanks ๐
With Best Regards
Swift Ideas