Skip to content

Instantly share code, notes, and snippets.

@junenacpil29
Created September 21, 2020 08:51
Show Gist options
  • Save junenacpil29/5fa35000caaa6d3c9a56d88b142ac526 to your computer and use it in GitHub Desktop.
Save junenacpil29/5fa35000caaa6d3c9a56d88b142ac526 to your computer and use it in GitHub Desktop.
WC Vendors | Show both the State and Country, but not city or house address
add_filter( 'wcv_format_store_address_args', 'my_wcv_format_store_address', 11, 2 );
function my_wcv_format_store_address( $address_args, $vendor_id ) {
$address_args = array(
'country' => WC()->countries->countries[ get_user_meta( $vendor_id, '_wcv_store_country', true ) ],
'city' => get_user_meta( $vendor_id, '_wcv_store_city', true ),
);
return $address_args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment