Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zakirsajib/18ee7d433688acb7c2098242b77e34be to your computer and use it in GitHub Desktop.
Save zakirsajib/18ee7d433688acb7c2098242b77e34be to your computer and use it in GitHub Desktop.
Hide related products text and entire row of releated products in WooCommerce
# There are two ways we can do this.
# Either using CSS or using remove action hook.
# Using CSS
.related.products {
display: none;
}
# Using remove action
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment