Created
November 13, 2024 05:57
-
-
Save xlplugins/b2b9a61330b365ffc19cdda939c07771 to your computer and use it in GitHub Desktop.
Funnelkit Checkout: Compatibility added with Theme Issabella by JWSThemes team #Issabella#theme
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
class WFACP_Theme_Issabella_by_JWSThemes_team { | |
function __construct() { | |
add_action( 'wfacp_after_template_found', [ $this, 'action' ] ); | |
} | |
public function action() { | |
if ( function_exists( 'jws_setup' ) ) { | |
remove_action( 'woocommerce_checkout_after_customer_details', 'woocommerce_checkout_payment', 30 ); | |
} | |
} | |
} | |
new WFACP_Theme_Issabella_by_JWSThemes_team(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment