Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xlplugins/afdca653fec48d0b33c0f2d01a87eb18 to your computer and use it in GitHub Desktop.
Save xlplugins/afdca653fec48d0b33c0f2d01a87eb18 to your computer and use it in GitHub Desktop.
Hide autoship option for non subscription product
add_filter( 'fkcart_select_options_label', function ( $text, $cart_item ) {
if ( ! ( isset( $cart_item['cart_item']['bos4w_data'] ) && ! empty( $cart_item['cart_item']['bos4w_data']['selected_subscription'] ) ) ) {
$text = '';
}
return $text;
} ,11,2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment