Verstecken
Posted: 08 Apr 2025, 15:14
Ich arbeite am WooCommerce -Schuhe -Shop und mein Kunde hat eine Anforderung zur Variation. Er möchte sich nicht auf Lagervariationen verstecken.
Gibt es eine Lösung dafür?>
Code: Select all
/**
* shortcode for variations when out of stock
*/
add_filter( 'woocommerce_variation_is_active', 'grey_out_variations_when_out_of_stock', 10, 2 );
function grey_out_variations_when_out_of_stock( $grey_out, $variation ) {
if ( ! $variation->is_in_stock() )
return false;
return true;
}