Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaeltieso/9794479 to your computer and use it in GitHub Desktop.
Save michaeltieso/9794479 to your computer and use it in GitHub Desktop.
Posted below is what you will need to add to your themes function.php to disable nRelate on WooCommerce's pages.
function hide_nrelate_from_posts($load_nrelate) {
if ( is_woocommerce() ) {
$load_nrelate = false;
}
return $load_nrelate;
}
add_filter('nrelate_related_is_loading', 'hide_nrelate_from_posts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment