Change the number of related products displayed in your shop.
Note: - 4 is for the number of products in each row. - 2 is for the number of rows.
// Redefine woocommerce_output_related_products()
function woocommerce_output_related_products() {
woocommerce_related_products(4,2); // Display 4 products in rows of 2
}