Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save somewherewarm-snippets/25de7c60aa9d532686df32f57ebaf7cb to your computer and use it in GitHub Desktop.
Save somewherewarm-snippets/25de7c60aa9d532686df32f57ebaf7cb to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: WooCommerce Composite Products
* Plugin URI: https://woocommerce.com/products/composite-products/
* Description: Use this snippet to hide out of stock component options
* Version: 1.0
* Author: WooCommerce
* Author URI: https://woocommerce.com/
* Developer: Manos Psychogyiopoulos
*
* Requires at least: 3.8
* Tested up to: 5.3
*
* Copyright: © 2021 Automattic.
* License: GNU General Public License v3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
add_filter( 'woocommerce_composite_component_options_query_args_current', 'sw_cp_exclude_out_of_stock_options' );
function sw_cp_exclude_out_of_stock_options( $args ) {
$args[ 'exclude_out_of_stock' ] = true;
return $args;
}
@James-RAC
Copy link

Is there the possibility of modifying this code to exclude "On Backorder" products from the component options? I've tried: `
// Hide backorder products Composite Options
add_filter( 'woocommerce_composite_component_options_query_args_current', 'sw_cp_exclude_is_on_backorder_options' );

function sw_cp_exclude_is_on_backorder_options ( $args ) {
$args[ 'exclude_is_on_backorder' ] = true;
return $args;
}
`

but this has not worked. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment