我想删除Woocommerce设置的所有国家/地区。
有人能告诉我在哪里可以看到/修改由woocommerce设置的国家/地区列表?我已经在woocommerce中查看了class-c-countries.php
,我非常确定此方法public function get_countries()
获取了国家/地区列表,但似乎通过使用{{1}获取它们所以我无法真正编辑它。我似乎无法访问该列表/文件。
以下是方法:
woocommerce_countries
如果需要,我可以发布整个 public function get_countries() {
if ( empty( $this->countries ) ) {
$this->countries = apply_filters( 'woocommerce_countries', include( WC()->plugin_path() . '/i18n/countries.php' ) );
if ( apply_filters( 'woocommerce_sort_countries', true ) ) {
asort( $this->countries );
}
}
return $this->countries;
}
文件,请告诉我。
在此先感谢您的帮助!
我对.php
btw
答案 0 :(得分:1)
您可以在Woocommerce设置中更改此设置,无需PHP。将“销售地点”设置为“特定国家/地区”,并仅选择要在结帐时显示的地点。请参阅Woocommerce文档: https://docs.woothemes.com/document/configuring-woocommerce-settings/