May 9, 2022
From now on, you can order any amount of meat on our webshop and we will deliver it to you by courier service (all of Croatia, Slovenia and Italy). The meat is delivered freshly vacuum- packed, in thermal boxes cooled with ice gel, which guarantees the maintenance of...
Apr 27, 2022
From now on, we also offer the Vintage Beef category. Check out our offer!
/**
* Disable out of stock variations
*
* @param bool $active
* @param WC_Product_Variation $variation
*
* @return Boolean
*/
function iconic_variation_is_active( $active, $variation ) {
if( ! $variation->is_in_stock() ) {
return false;
}
return $active;
}
add_filter( 'woocommerce_variation_is_active', 'iconic_variation_is_active', 10, 2 );