Skip to content

Instantly share code, notes, and snippets.

@diviengine
Created August 18, 2022 07:36
Show Gist options
  • Save diviengine/2bc4646b39f7e7e45976404e930cf4ed to your computer and use it in GitHub Desktop.
Save diviengine/2bc4646b39f7e7e45976404e930cf4ed to your computer and use it in GitHub Desktop.
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