Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save greenhornet79/679939d34e1e3d284ada9838c7655bb7 to your computer and use it in GitHub Desktop.
Save greenhornet79/679939d34e1e3d284ada9838c7655bb7 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'leaky_paywall_basic_shipping_countries', 'zeen_us_and_canada_only' );
function zeen_us_and_canada_only( $countries ) {
$new_countries = array(
'US' => 'United States',
'CA' => 'Canada'
);
return $new_countries;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment