Created
May 15, 2023 12:46
-
-
Save clifgriffin/b02594e5115800cdaa98eb1916e1d259 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
add_filter( 'cfw_display_bump', function( $display_bump ) { | |
if ( ! class_exists( '\\WC_Subscriptions_Cart' ) ) { | |
return $display_bump; | |
} | |
if ( \WC_Subscriptions_Cart::cart_contains_subscription() ) { | |
return false; | |
} | |
return $display_bump; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment