It is showing related products wrong – I need them to show products in the same category rather than what it’s showing now
Hey whdsolutions,
Please refer to the following:
https://wordpress.org/support/topic/show-only-products-of-the-same-category-in-related-products/
Best regards,
Jordan Shannon
Hey,
You can read more about WooCommerce related products here – https://docs.woocommerce.com/document/related-products-up-sells-and-cross-sells/#section-3
If you would like to hide related products, please add following code to functions.php file of your child theme in Appearance > Editor
function avia_remove_related_product() {
remove_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products', 20);
}
add_action( 'init', 'avia_remove_related_product');
Best regards,
Yigit