Created
November 12, 2025 13:10
-
-
Save xlplugins/c545ec2974da6a9ffed7d87ba2fe8c5b to your computer and use it in GitHub Desktop.
Funnelkit Cart: Products Type Simple Exculde from Blacklist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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