Tahák k tvorbě webů

WooCommerce

Pokladna - odstranění druhého řádku adresy

V pokladně odstraní druhý řádek fakturační a doručovací adresy.

<?php
function gog_modify_checkout_fields($fields) {
	unset($fields['billing']['billing_address_2']);
	unset($fields['shipping']['shipping_address_2']);
	return $fields;
}
add_filter('woocommerce_checkout_fields' , 'gog_modify_checkout_fields');