Thursday 14 July 2016

Woocommerce sell to Andhra Pradesh only.


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' );

Delete the <?php first line if you are having errors come up after saving the file. If you need a list of all the states/regions/provinces/counties available in WooCommerce, you can find them in wp-content/plugins/woocommerce/i18n/states/.

No comments:

Post a Comment