Skip to content

Instantly share code, notes, and snippets.

@xlplugins
Created November 13, 2024 05:57
Show Gist options
  • Save xlplugins/b2b9a61330b365ffc19cdda939c07771 to your computer and use it in GitHub Desktop.
Save xlplugins/b2b9a61330b365ffc19cdda939c07771 to your computer and use it in GitHub Desktop.
Funnelkit Checkout: Compatibility added with Theme Issabella by JWSThemes team #Issabella#theme
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