我在做一个电子商务项目。当客户购买产品时,系统会根据他们的名字、姓氏和序列号为他们分配一个客户代码。它被会计软件使用。
下面是我的代码:
add_action( 'show_user_profile', 'ipx_user_profile_fields' );
add_action( 'edit_user_profile', 'ipx_user_profile_fields' );
function ipx_user_profile_fields( $user ) { ?>
<h3><?php _e("IPX", "blank"); ?></h3>
<table class="form-table">
<tr>
<th><label for="ipx_customer_code"><?php _e("Customer Code"); ?></label></th>
<td>
<input type="text" name="ipx_customer_code" id="ipx_customer_code" value="<?php echo esc_attr( get_the_author_meta( 'ipx_customer_code', $user->ID ) ); ?>" class="regular-text" /><br />
<span class="description"><?php _e("This field should contain only the IPX Customer Code."); ?></span>
</td>
</tr>
</table>
<?php }
add_action( 'personal_options_update', 'save_ipx_user_profile_fields' );
add_action( 'edit_user_profile_update', 'save_ipx_user_profile_fields' );
function save_ipx_user_profile_fields( $user_id ) {
if ( !current_user_can( 'edit_user', $user_id ) ) {
return false;
}
update_user_meta( $user_id, 'ipx_customer_code', $_POST['ipx_customer_code'] );
}
/**
* Generate customer code based on user's first name, last name and a sequential number
*/
function generate_customer_code($user_id) {
$user = get_userdata($user_id);
$first_name = $user->first_name;
$last_name = $user->last_name;
// Get the current sequential number for the customer code
$sequential_number = get_user_meta($user_id, 'sequential_customer_code', true);
if (!$sequential_number) {
$sequential_number = 0;
}
// Loop until a unique customer code is generated
do {
$sequential_number++;
// Generate the customer code
$customer_code = strtoupper(substr($first_name, 0, 4) . substr($last_name, 0, 4) . sprintf('%02d', $sequential_number));
// Check if the customer code already exists
$user_query = new WP_User_Query(array(
'meta_key' => 'ipx_customer_code',
'meta_value' => $customer_code
));
} while (!empty($user_query->results));
// Save the customer code and sequential number as separate custom fields
update_user_meta($user_id, 'ipx_customer_code', $customer_code);
update_user_meta($user_id, 'sequential_customer_code', $sequential_number);
}
add_action('user_register', 'generate_customer_code');
它检查客户代码是否已被使用,如果已被使用,则移动到下一个(按顺序)。
我一直在测试这个,遇到了一个问题。只有当客户创建帐户时才有效。我的客户坚持认为访客访问应该保持打开状态,这意味着永远不会生成客户代码。
有没有办法将这些信息存储在wp_wc_customer_lookup表中?它记录了所有客户,无论他们是否注册。我认为我的客户仍然希望在物理上看到客户代码(在WooCommerce客户选项卡上?)但它需要面向每一位客户,而不仅仅是注册客户。
任何想法将不胜感激。并提前为任何不可靠的编码道歉-我的PHP是粗糙的,但我宁愿尝试它。
1条答案
按热度按时间epggiuax1#
这里的想法是当Guest用户在您的商店购物时注册他们。
wp_insert_user()
将用户注册为“访客”。现在,作为您生成“客户代码”的最后一个函数,它被挂接在
user_register
WordPress钩子中,该钩子由wp_insert_user()
精确触发,因此该函数将被执行,这解决了您的问题。代码(未测试):
应该能用
这需要测试,以确保与WooCommerce没有不良的交互。
我认为这是最好最简单的方法。