Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save panoslyrakis/c072285e6e75407e1e5b9b82f50e0241 to your computer and use it in GitHub Desktop.
Save panoslyrakis/c072285e6e75407e1e5b9b82f50e0241 to your computer and use it in GitHub Desktop.
Hide address section in MarketPress checkout page
<?php
add_filter( 'mp_checkout/sections_array', function( $sections ){
if( isset( $sections['billing-shipping-address'] ) ){
unset( $sections['billing-shipping-address'] );
}
return $sections;
}, 10 );
add_filter( 'mp_order/get_addresses', function( $html ){
return '';
}, 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment