Skip to content

Instantly share code, notes, and snippets.

@sandeepwisetr
Created January 29, 2020 05:26
Show Gist options
  • Save sandeepwisetr/7be363e64de67a0536831ec3ef4dce51 to your computer and use it in GitHub Desktop.
Save sandeepwisetr/7be363e64de67a0536831ec3ef4dce51 to your computer and use it in GitHub Desktop.
Allow All type of product in skip cart
<?php
add_filter( 'wfch_offer_product_types', function () {
return array(
'simple',
'variable',
'course',
'variation',
'subscription',
'variable-subscription',
'subscription_variation',
'virtual_subscription',
'bundle',
'yith_bundle',
'woosb',
'braintree-subscription',
'braintree-variable-subscription',
);
} );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment