German Market - Filter Ladezeiten Variationen - Steuern + Lieferzeit
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
// Fixed long page load | |
// @author MarketPress | |
// Please, increase your PHP Memory Limit | |
add_filter( 'woocommerce_de_variations_have_the_same_tax_string', 'my_woocommerce_de_variations_have_the_same_tax_string' ); | |
function my_woocommerce_de_variations_have_the_same_tax_string( $string ) { | |
return 'Inkl. MwSt.'; | |
} | |
add_filter( 'woocommerce_de_avoid_check_same_delivery_time_show_parent', '__return_true' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment