Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MaximilianoRicoTabo/b14ce1f2e32e2a59e4fa31392d68f82d to your computer and use it in GitHub Desktop.
Save MaximilianoRicoTabo/b14ce1f2e32e2a59e4fa31392d68f82d to your computer and use it in GitHub Desktop.
hide state from billing address
<?php
/**
* Hide the billing state field on the checkout and billing pages.
*/
function wp_head_hide_billing_state_field() {
global $pmpro_pages;
if ( empty( $pmpro_pages ) || ( ! is_page( $pmpro_pages['checkout'] ) && ! is_page( $pmpro_pages['billing'] ) ) ) {
return;
}
?>
<style>
#pmpro_billing_address_fields div.pmpro_form_field-bstate {
display: none;
}
</style>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment