为了实现这一点,您只需要两个woocommerce过滤器。
首先,我们从签出表单中删除电子邮件帖子字段。
其次,我们将提交的表单数据电子邮件设置为某个固定值。
这是全部代码,粘贴到functions.php
你可以走了。别忘了随时根据需要更改电子邮件。
add_filter(\'woocommerce_checkout_fields\', \'bt_manipulate_checkout_fields\');
function bt_manipulate_checkout_fields ($fields) {
unset($fields[\'billing\'][\'billing_email\']);
return $fields;
}
add_filter(\'woocommerce_checkout_posted_data\', \'bt_manipulate_checkout_posted_data\');
function bt_manipulate_checkout_posted_data ($data) {
$data[\'billing_email\'] = \'[email protected]\';
return $data;
}