Created
June 23, 2025 14:37
-
-
Save xlplugins/afdca653fec48d0b33c0f2d01a87eb18 to your computer and use it in GitHub Desktop.
Hide autoship option for non subscription product
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_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