我有一个函数可以获取美国的州列表,并从中删除我们不出售给美国的州。这样可以正常工作,并在创建订单,开票和运输状态下拉列表等时从多个区域中删除状态。
这是功能。
function wc_sell_only_states($states) {
$states_not_allowed['US'] = array(
'AL' => __('Alabama', 'woocommerce'),
'AR' => __('Arkansas', 'woocommerce'),
'MD' => __('Maryland', 'woocommerce'),
'MI' => __('Michigan', 'woocommerce'),
'MO' => __('Missouri', 'woocommerce'),
'MS' => __('Mississippi', 'woocommerce'),
'NJ' => __('New Jersey', 'woocommerce'),
'SC' => __('South Carolina', 'woocommerce'),
'TX' => __('Texas', 'woocommerce'),
'VA' => __('Virginia', 'woocommerce'),
'WV' => __('West Virginia', 'woocommerce'),
'AA' => __('Armed Forces', 'woocommerce'),
'AE' => __('Armed Forces', 'woocommerce'),
'AP' => __('Armed Forces', 'woocommerce'),
// MANUALLY ADD STATES NOT ALLOWED HERE 'STATE_ABBREVIATION' => __('State_Name', 'woocommerce'),
);
foreach ($states['US'] as $key1 => $value) {
foreach ($states_not_allowed['US'] as $key2 => $value) {
if ($key1 === $key2) {
unset($states['US'][$key1]);
}
}
}
return $states;
}
add_filter('woocommerce_states', 'wc_sell_only_states');
如您所见,当我需要更改不允许状态列表时,我必须手动进入并添加状态。为了使这在客户端上更容易,我正在考虑制作一个包含所有50个州的复选框的管理页面。我已经创建了页面,但是不确定保存数据并将其重新绑定到函数中的最佳方法。
我在这里创建管理页面...
function states_admin_page() {
global $allowed_states;
add_menu_page( __( 'States', 'states' ), __( 'States', 'states' ), 'edit_posts', 'add_data', 'my_states', 'dashicons-groups', 6 ) ;
}
add_action('admin_menu', 'states_admin_page');
这是我的回调函数...(不起作用)
function gemcore_states() {
if(!empty($_POST)) {
global $wpdb;
$table = 'states';
$data = array('selected' => $_POST['AA']);
$where = array('code' => 'AA');
$format = '%d';
$wpdb->update($table, $data, $format, $where);
if($success){
echo 'data has been save' ;
}
}else{
?>
<form method="post">
<label>Armed Forces (AA): <input type="checkbox" name="AA" /></label><br />
<!-- ... the rest of the states -->
<input type="submit" value="submit">
</form>
<?php
}
}
获取复选框值并将其另存为0或1的最佳方法是什么?然后在我的原始函数wc_sell_only_states()中获取这些数据。
答案 0 :(得分:1)
以下代码将为“ Woocommerce设置”添加“美国各州设置”页面的子菜单条目,其表单包含包含所有美国各州的复选框。每个经过检查和验证的状态都将可用并允许。
设置数据将作为所有设置保存在wp_options
表中。
代码如下:
// Add a submenu entry to Woocommerce menu settings
add_action('admin_menu', 'states_settings_admin_submenu');
function states_settings_admin_submenu() {
$states = __( 'Edit states', 'woocommerce' );
add_submenu_page('woocommerce', $states, $states, 'edit_shop_orders', 'edit', 'wc_states_setting_page');
}
// The content for the Woocommerce submenu entry
function wc_states_setting_page() {
$states = array();
$country_code = 'US';
include_once WC()->plugin_path() . '/i18n/states/' . $country_code . '.php';
if( isset($_POST['submit_us_states']) ) {
$new_states = [];
foreach( $states[$country_code] as $code => $label ){
$new_states[$code] = isset($_POST[$code]) && $_POST[$code] ? '1' : '';
}
update_option( 'allowed_us_states', $new_states );
}
$allowed = get_option( 'allowed_us_states' );
// Styling
echo '<style> .us-states li {width: 200px; float:left; display:block;} .us-states {max-width: 600px;} .us-states .button {float: right; margin-right: 135px;} </style>';
// The form
echo '<form method="post" class="us-states"><h1>'.__("Allowed US States settings").'</h1><ul>';
foreach( $states[$country_code] as $code => $label ){
$checked = isset($allowed[$code]) && $allowed[$code] ? ' checked="checked"' : '';
echo '<li><label><input type="checkbox" name="'.$code.'"'.$checked.'> '.$label.'</label></li>';
}
echo '</ul><br><br><input type="submit" value="submit" name="submit_us_states" class="button alt"></form>';
}
// Filtering allowed US states
add_filter('woocommerce_states', 'allowed_us_states' );
function allowed_us_states( $states ) {
if( $allowed = get_option( 'allowed_us_states' ) ){
foreach( $allowed as $code => $boolean ){
if( ! $boolean )
unset($states['US'][$code]);
}
}
return $states;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试并可以正常工作。