을 woocommerce, 아래의 코드는에서 판매하는 데 사용됩니다 특정 "주":판매는 <strong>내 계정</strong> 페이지, 내가 특정 "도시"또는 "우편 번호"에서 판매하는 아래와 유사한 코드를 사용하려면 을
/**
* Sell only in Alger & Zeralda
*/
function wc_sell_only_states($states) {
$states['DZ'] = array(
'ALG' => __('Alger', 'woocommerce'),
'ZLD' => __('Zeralda', 'woocommerce'),
);
return $states;
}
add_filter('woocommerce_states', 'wc_sell_only_states');
무엇을 사용하거나 수정해야합니까?
나는이 시도하지만 "오류 코드 500"을 표시
// define the woocommerce_countries_base_city callback
function filter_woocommerce_countries_base_city($var) {
// make filter magic happen here...
$var['DZ'] = array(
'ALG' => __('Alger', 'woocommerce'),
'ZLD' => __('Zeralda', 'woocommerce'),
);
return $var;
};
// add the filter
add_filter('woocommerce_countries_base_city', 'filter_woocommerce_countries_base_city', 10, 1);
고급에 감사합니다!
불명확하거나 유용하지 않은 제 질문을 찾은 사람들이 저에게 무엇이 잘못되었는지 말해주십시오! –
이것은 표준 wocommerce 후크가 아니지만 칠레 페소 플러그인의 일부입니까? 다음은 표준 WooCommerce 후크 목록입니다. -> https://docs.woothemes.com/wc-apidocs/hook-docs.html –
여기에서 https://gist.github.com/woogist/b81742981ca6297b03e6을 발견했습니다. 나에게 도움이 되었어, 지금은 도시들만 지정해야 해. –