Home Forums WoodMart support forum Hide certain products from main product archiv Reply To: Hide certain products from main product archiv

#565502

Hello,

Please add below code to functions.php file in Child theme:

// WooCommerce – Exclude Products from Shop Page using IDs.
// =============================================================================

add_action( 'pre_get_posts', 'custom_pre_get_posts_query' );

function custom_pre_get_posts_query( $q ) {

  if ( ! $q->is_main_query() ) return;
  if ( ! $q->is_post_type_archive() ) return;
  
  if ( ! is_admin() && is_shop() ) {

    $q->set( 'post__not_in', array(1216, 1185) ); // Replace 70 and 53 with your products IDs. Separate each ID with a comma.
  
  }
  remove_action( 'pre_get_posts', 'custom_pre_get_posts_query' );
}

Best Regards.