你好,我需要一些幫助,使我自動檢查複選框。我正在使用此代碼在Woocommerce的結帳中插入複選框。如何使複選框自動被選中?
我可以使用哪些代碼使複選框被選中?
// Our hooked in function - $fields is passed via the filter!
function custom_override_checkout_fields($fields) {
$fields['billing']['mc4wp-try-subscribe'] = array(
'label' => __('Newsletter', 'woocommerce'),
'type'=> 'checkbox',
'required' => false,
'checked' => true,
'value' => '1',
'class' => array('form-row-wide'),
);
return $fields;
}
您好丹尼斯感謝您的答覆,但我添加了你給我的代碼,但仍然不能工作,我在第一篇文章中用你的代碼更新了我的代碼。 – user3476977