Last active
February 20, 2018 19:33
-
-
Save kimcoleman/6d9c51b31a5e794bfac629fd6c41897c to your computer and use it in GitHub Desktop.
Add Shipping Address to membership checkout only if Addon Package is included.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add Shipping Address to membership checkout only if Addon Package is included. | |
*/ | |
function hide_pmpro_shipping_level_1( $level_id ) { | |
if ( ! empty( $_REQUEST['ap'] ) ) { | |
$hideshipping = false; | |
} else { | |
$hideshipping = true; | |
} | |
return $hideshipping; | |
} | |
add_filter( 'pre_option_pmpro_shipping_hidden_level_1', 'hide_pmpro_shipping_level_1' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment