If you want to sell only in specific states, regions or provinces in some states, add this code in the file functions.php located in wp-content/themes/your-theme-name/:
/**
* Sell only in Andhra Pradesh
*/
function wc_sell_only_states( $states ) {
$states['IN'] = array(
'AP' => __( 'Andhra Pradesh', 'woocommerce' )
);
return $states;
}
add_filter( 'woocommerce_states', 'wc_sell_only_states' );
No comments:
Post a Comment