tamarazuk
11/20/2014 - 10:57 PM

WooCommerce Address Validation: Move postcode lookup fields to the top of billing and shipping fields rather than keeping them below the cou

WooCommerce Address Validation: Move postcode lookup fields to the top of billing and shipping fields rather than keeping them below the country field.

<?php

function wc_address_validation_move_postcode_lookup() {

	wc_enqueue_js( '
		( function() {
			var $billingLookup = $( "#wc_address_validation_postcode_lookup_billing" );
			var $shippingLookup = $( "#wc_address_validation_postcode_lookup_shipping" );

			$( "div.woocommerce-billing-fields").find( "h3" ).after( $billingLookup );
			$( "div.woocommerce-shipping-fields").find( "h3" ).after( $shippingLookup );
		} )();
	' );
}
add_action( 'wp', 'wc_address_validation_move_postcode_lookup', 1000 );