Skip to content

Instantly share code, notes, and snippets.

@bentasm1
Last active November 22, 2016 21:39
Show Gist options
  • Save bentasm1/9946a035456de59f5629 to your computer and use it in GitHub Desktop.
Save bentasm1/9946a035456de59f5629 to your computer and use it in GitHub Desktop.
Customize the Single Product Page Meta for "Ships From: <country>"
add_filter( 'wcv_product_ships_from', 'custom_wcv_product_ships_from' );
function custom_wcv_product_ships_from( $ships_from ) {
$ships_from[ 'store_country' ] = '';
$ships_from[ 'title' ] = '';
return $ships_from;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment