Skip to content

Instantly share code, notes, and snippets.

@xlplugins
Created November 12, 2025 13:10
Show Gist options
  • Save xlplugins/c545ec2974da6a9ffed7d87ba2fe8c5b to your computer and use it in GitHub Desktop.
Save xlplugins/c545ec2974da6a9ffed7d87ba2fe8c5b to your computer and use it in GitHub Desktop.
Funnelkit Cart: Products Type Simple Exculde from Blacklist
add_filter( 'fkcart_product_support_select_options', function($status, $_product){
if($_product->get_type()=='simple'){
$status = true;
}
return $status;
} ,11,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment