Created
August 18, 2022 07:36
-
-
Save diviengine/2bc4646b39f7e7e45976404e930cf4ed to your computer and use it in GitHub Desktop.
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_action( 'after_setup_theme', function() { | |
add_filter( 'german_market_add_woocommerce_de_templates_force_original', function( $return_original, $template_name ) { | |
if ( 'checkout/form-checkout.php' === $template_name ) { | |
$return_original = true; | |
} | |
return $return_original; | |
}, 10, 2 ); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment