Skip to content

Instantly share code, notes, and snippets.

@temsool
Created November 24, 2022 13:05
Show Gist options
  • Save temsool/74a3275f5bc905866095a4366a49faba to your computer and use it in GitHub Desktop.
Save temsool/74a3275f5bc905866095a4366a49faba to your computer and use it in GitHub Desktop.
ACF Pro relationship only show in stock products woocommerce
<?php
add_filter('acf/fields/relationship/query/name=also_may_like', 'exclude_outofstock', 10, 3);
function exclude_outofstock ( $args, $field, $post_id ) {
$meta_query[] = [
'key' => '_stock_status',
'value' => 'instock',
'compare' => '=',
];
$args['meta_query']= $meta_query;
return $args;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment