英文:
WooCommerce custom create account checkbox on checkout
问题
以下是您要翻译的代码部分:
// Move Account password field into billing section
function move_password_field($checkout_fields){
// Move Account Password into Billing
$checkout_fields['billing']['account_password'] = $checkout_fields['account']['account_password'];
// Remove Password from Billing
unset($checkout_fields['account']['account_password']);
return $checkout_fields;
}
add_filter('woocommerce_checkout_fields', 'move_password_field', 999);
// CSS rules
add_action( 'woocommerce_before_checkout_billing_form', 'move_checkout_create_an_account_css' );
function move_checkout_create_an_account_css() {
if( ! is_user_logged_in() ) :
?><style>
.woocommerce-account-fields label.woocommerce-form__label-for-checkbox {display: none !important;}
#account_cb_field {margin-top: 32px;}
#account_cb_field input {margin-right: 6px;}
</style>
<?php
endif;
}
// Add a checkbox to billing section
add_filter( 'woocommerce_checkout_fields', 'move_checkout_create_an_account_checkbox' );
function move_checkout_create_an_account_checkbox( $fields ) {
if( ! is_user_logged_in() ) {
// Make email field on half on left side
$fields['billing']['billing_email']['class'] = array('form-row-wide');
// Custom checkbox on half right side
$fields['billing']['account_cb'] = array(
'type' => 'checkbox',
'label' => __("Create an account?", "woocommerce"),
'class' => array('form-row-wide'),
);
}
return $fields;
}
// remove "(optional)" from the new checkbox
add_filter( 'woocommerce_form_field' , 'remove_checkout_optional_fields_label', 10, 4 );
function remove_checkout_optional_fields_label( $field, $key, $args, $value ) {
// Only on checkout page
if ( is_checkout() && ! is_wc_endpoint_url() && $key === 'account_cb' ) {
$optional = ' <span class="optional">' . esc_html__( 'optional', 'woocommerce' ) . '</span>';
$field = str_replace( $optional, '', $field );
}
return $field;
}
// The jQuery code
add_action( 'wp_footer', 'move_checkout_create_an_account_js' );
function move_checkout_create_an_account_js() {
if ( ! is_user_logged_in() && is_checkout() && ! is_wc_endpoint_url() ) :
?><script>
(function($){
$('input[name=account_cb]').on( 'click', function() {
$('input[name=createaccount]').trigger('click');
});
})(jQuery);
</script>
<?php
endif;
}
希望这有所帮助。
英文:
We just moved and merged the WooCommerce account password field on the checkout page from the "Account" group to the "Billing" field group. This works nicely. Also, we create a new checkbox field and add this to the billing section. Without that, the "Create an account" checkbox will still be at the default position. To do so, we created a new checkbox with jQuery.
Thanks to the following articles:
- https://stackoverflow.com/questions/64527152/how-to-move-the-create-account-checkbox-on-woocommerce-checkout-page
- https://stackoverflow.com/questions/38261425/reordering-checkout-fields-in-woocommerce-3
With our current code, the moved password field is always visible. We want to have it the same way as WooCommerce default works. This means the password field should only be visible when the checkbox is active. WooCommerce by default has an excellent hide & Show CSS in place. However, I'm not able to use the identical CSS (or maybe script?!).
How can we connect the custom checkbox with the account password field?
// Move Account password field into billing section
function move_password_field($checkout_fields){
// Move Account Password into Billing
$checkout_fields['billing']['account_password'] = $checkout_fields['account']['account_password'];
// Remove Password from Billing
unset($checkout_fields['account']['account_password']);
return $checkout_fields;
}
add_filter('woocommerce_checkout_fields', 'move_password_field', 999);
// CSS rules
add_action( 'woocommerce_before_checkout_billing_form', 'move_checkout_create_an_account_css' );
function move_checkout_create_an_account_css() {
if( ! is_user_logged_in() ) :
?><style>
.woocommerce-account-fields label.woocommerce-form__label-for-checkbox {display: none !important;}
#account_cb_field {margin-top: 32px;}
#account_cb_field input {margin-right: 6px;}
</style>
<?php
endif;
}
// Add a checkbox to billing section
add_filter( 'woocommerce_checkout_fields', 'move_checkout_create_an_account_checkbox' );
function move_checkout_create_an_account_checkbox( $fields ) {
if( ! is_user_logged_in() ) {
// Make email field on half on left side
$fields['billing']['billing_email']['class'] = array('form-row-wide');
// Custom checkbox on half right side
$fields['billing']['account_cb'] = array(
'type' => 'checkbox',
'label' => __("Create an account?", "woocommerce"),
'class' => array('form-row-wide'),
);
}
return $fields;
}
// remove "(optional)" from the new checkbox
add_filter( 'woocommerce_form_field' , 'remove_checkout_optional_fields_label', 10, 4 );
function remove_checkout_optional_fields_label( $field, $key, $args, $value ) {
// Only on checkout page
if ( is_checkout() && ! is_wc_endpoint_url() && $key === 'account_cb' ) {
$optional = '&nbsp;<span class="optional">(' . esc_html__( 'optional', 'woocommerce' ) . ')</span>';
$field = str_replace( $optional, '', $field );
}
return $field;
}
// The jQuery code
add_action( 'wp_footer', 'move_checkout_create_an_account_js' );
function move_checkout_create_an_account_js() {
if ( ! is_user_logged_in() && is_checkout() && ! is_wc_endpoint_url() ) :
?><script>
(function($){
$('input[name=account_cb]').on( 'click', function() {
$('input[name=createaccount]').trigger('click');
});
})(jQuery);
</script>
<?php
endif;
}
答案1
得分: 3
这是您提供的代码的翻译部分:
// 移动账户密码字段到结算部分
function move_password_field( $checkout_fields ) {
// 如果已登录,则不执行
if ( is_user_logged_in() ) {
return $checkout_fields;
}
// 如果未登录,则将账户密码字段移动到结算部分
$checkout_fields['billing']['account_password'] = $checkout_fields['account']['account_password'];
$checkout_fields['billing']['account_password'] = array(
'label' => __( '密码', 'woocommerce' ), // 添加自定义字段标签
'placeholder' => _x( '密码', '占位符', 'woocommerce' ), // 添加自定义字段占位符
'clear' => false, // 是否清除字段
'type' => 'text', // 添加字段类型
);
unset( $checkout_fields['account']['account_password'] );
return $checkout_fields;
}
add_filter( 'woocommerce_checkout_fields', 'move_password_field', 999 );
// 在结算部分添加复选框
function move_checkout_create_an_account_checkbox( $fields ) {
if ( is_user_logged_in() ) {
return $fields;
}
// 将电子邮件字段设置为左侧一半
$fields['billing']['billing_email']['class'] = array( 'form-row-wide' );
// 在右侧添加自定义复选框
$fields['billing']['account_cb'] = array(
'type' => 'checkbox',
'label' => __( '创建帐户?', 'woocommerce' ),
'placeholder' => _x( '创建帐户?', '占位符', 'woocommerce' ),
'class' => array( 'form-row-wide' ),
);
return $fields;
}
add_filter( 'woocommerce_checkout_fields', 'move_checkout_create_an_account_checkbox' );
// 从新复选框中删除“(可选)”文本
function remove_checkout_optional_fields_label( $field, $key, $args, $value ) {
// 仅在结算页面执行
if ( is_checkout() && ! is_wc_endpoint_url() && ( $key === 'account_cb' || 'account_password' === $key ) ) {
$optional = ' <span class="optional">(' . esc_html__( '可选', 'woocommerce' ) . ')</span>';
$field = str_replace( $optional, '', $field );
}
return $field;
}
add_filter( 'woocommerce_form_field', 'remove_checkout_optional_fields_label', 10, 4 );
/**
* 在结算提交时验证密码字段是否已选中
*
* @return void
* @see https://docs.woocommerce.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/
*/
function woocomerce_validate_pass($fields, $errors): void {
if ( isset( $_POST['account_cb'] ) && empty( $_POST['account_password'] ) ) {
$errors->add( 'validation', '请输入密码。' );
}
}
add_action( 'woocommerce_after_checkout_validation', 'woocomerce_validate_pass', 10, 2 );
// jQuery代码
add_action( 'wp_footer', 'move_checkout_create_an_account_js' );
function move_checkout_create_an_account_js() {
if ( ! is_user_logged_in() && is_checkout() && ! is_wc_endpoint_url() ) :
?>
<script>
(function($) {
// 可重用的函数,如果需要,可用于处理结算字段
const toggleElmVisibility = (selector = '', show = true, duration = 200) => {
if (show) {
$(selector).show(duration, () => {
$(selector).addClass("validate-required");
});
} else {
$(selector).hide(duration, () => {
$(selector).removeClass("validate-required");
});
}
$(selector).removeClass("woocommerce-validated");
$(selector).removeClass("woocommerce-invalid woocommerce-invalid-required-field");
}
// 在页面加载时隐藏密码字段,除非他们已选中复选框
toggleElmVisibility('#account_password_field', $('#account_cb').is(':checked'));
$('#account_cb').on('change', function() {
toggleElmVisibility('#account_password_field', $(this).is(':checked'));
});
$('input[name=account_cb]').on('click', function() {
$('input[name=createaccount]').trigger('click');
});
})(jQuery);
</script>
<?php
endif;
}
这是您提供的代码的翻译。如果您有任何其他问题,请随时提问。
英文:
there are a fair few issues with that code
namely Warning: Undefined array key "account_password" in /var/www/html/wp-content/themes/storefront/functions.php
but here is the solution to your initial problem
// The jQuery code
add_action( 'wp_footer', 'move_checkout_create_an_account_js' );
function move_checkout_create_an_account_js() {
if ( ! is_user_logged_in() && is_checkout() && ! is_wc_endpoint_url() ) :
?>
<script>
(function($) {
// re-usable function to play around with the checkout fields if needed in the
// future
const toggleElmVisibility = (selector = '', show = true, duration = 200) => {
if (show) {
$(selector).show(duration);
return;
}
$(selector).hide(duration);
}
// hide password fields on page load, unless they have alredy checked the checkbox
toggleElmVisibility('#account_password_field', $('#account_cb').is(':checked'));
$('#account_cb').on('change', function() {
toggleElmVisibility('#account_password_field', $(this).is(':checked'));
});
$('input[name=account_cb]').on('click', function() {
$('input[name=createaccount]').trigger('click');
});
})(jQuery);
</script>
<?php
endif;
}
Edit:
Changes to function to add the password field
// Move Account password field into billing section
function move_password_field( $checkout_fields ) {
//bail if not logged in
if ( is_user_logged_in() ) {
return $checkout_fields;
}
// Move Account Password into Billing if not logged in
$checkout_fields['billing']['account_password'] = $checkout_fields['account']['account_password'];
$checkout_fields['billing']['account_password'] = array(
'label' => __( 'Password', 'woocommerce' ), // Add custom field label
'placeholder' => _x( 'Password', 'placeholder', 'woocommerce' ), // Add custom field placeholder
'clear' => false, // add clear or not
'type' => 'text', // add field type
);
unset( $checkout_fields['account']['account_password'] );
return $checkout_fields;
} add_filter( 'woocommerce_checkout_fields', 'move_password_field', 999 );
change the remove optional text function to catch the new field
// remove "(optional)" from the new checkbox
function remove_checkout_optional_fields_label( $field, $key, $args, $value ) {
// Only on checkout page
if ( is_checkout() && ! is_wc_endpoint_url() && ( $key === 'account_cb' || 'account_password' === $key ) ) {
$optional = '&nbsp;<span class="optional">(' . esc_html__( 'optional', 'woocommerce' ) . ')</span>';
$field = str_replace( $optional, '', $field );
}
return $field;
} add_filter( 'woocommerce_form_field', 'remove_checkout_optional_fields_label', 10, 4 );
submit validation
/**
* Validate the password field if checkbox is checked on checkout submit
*
* @return void
* @see https://docs.woocommerce.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/
*/
function woocomerce_validate_pass(): void {
if ( isset( $_POST['account_cb'] ) && empty( $_POST['account_password'] ) ) {
wc_add_notice( __( 'Please enter a password.', 'woocommerce' ), 'error' );
}
} add_action( 'woocommerce_after_checkout_validation', 'woocomerce_validate_pass' );
and changes to js to pickup that the field is required
(function($) {
// re-usable function to play around with the checkout fields if needed in the
const toggleElmVisibility = (selector = '', show = true, duration = 200) => {
if (show) {
$(selector).show(duration, () => {
$(selector).addClass("validate-required");
});
} else {
$(selector).hide(duration, () => {
$(selector).removeClass("validate-required");
});
}
$(selector).removeClass("woocommerce-validated");
$(selector).removeClass("woocommerce-invalid woocommerce-invalid-required-field");
}
// hide password fields on page load, unless they have alredy checked the checkbox
toggleElmVisibility('#account_password_field', $('#account_cb').is(':checked'));
$('#account_cb').on('change', function() {
toggleElmVisibility('#account_password_field', $(this).is(':checked'));
});
$('input[name=account_cb]').on('click', function() {
$('input[name=createaccount]').trigger('click');
});
})(jQuery);
the other functions have been removed, the complete code:
// Move Account password field into billing section
function move_password_field( $checkout_fields ) {
//bail if not logged in
if ( is_user_logged_in() ) {
return $checkout_fields;
}
// Move Account Password into Billing if not logged in
$checkout_fields['billing']['account_password'] = $checkout_fields['account']['account_password'];
$checkout_fields['billing']['account_password'] = array(
'label' => __( 'Password', 'woocommerce' ), // Add custom field label
'placeholder' => _x( 'Password', 'placeholder', 'woocommerce' ), // Add custom field placeholder
'clear' => false, // add clear or not
'type' => 'text', // add field type
);
unset( $checkout_fields['account']['account_password'] );
return $checkout_fields;
} add_filter( 'woocommerce_checkout_fields', 'move_password_field', 999 );
// Add a checkbox to billing section
function move_checkout_create_an_account_checkbox( $fields ) {
if ( is_user_logged_in() ) {
return $fields;
}
// Make email field on half on left side
$fields['billing']['billing_email']['class'] = array( 'form-row-wide' );
// Custom checkbox on half right side
$fields['billing']['account_cb'] = array(
'type' => 'checkbox',
'label' => __( 'Create an account?', 'woocommerce' ),
'placeholder' => _x( 'Create an account?', 'placeholder', 'woocommerce' ),
'class' => array( 'form-row-wide' ),
);
return $fields;
} add_filter( 'woocommerce_checkout_fields', 'move_checkout_create_an_account_checkbox' );
// remove "(optional)" from the new checkbox
function remove_checkout_optional_fields_label( $field, $key, $args, $value ) {
// Only on checkout page
if ( is_checkout() && ! is_wc_endpoint_url() && ( $key === 'account_cb' || 'account_password' === $key ) ) {
$optional = '&nbsp;<span class="optional">(' . esc_html__( 'optional', 'woocommerce' ) . ')</span>';
$field = str_replace( $optional, '', $field );
}
return $field;
} add_filter( 'woocommerce_form_field', 'remove_checkout_optional_fields_label', 10, 4 );
/**
* Validate the password field if checkbox is checked on checkout submit
*
* @return void
* @see https://docs.woocommerce.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/
*/
function woocomerce_validate_pass($fields, $errors): void {
if ( isset( $_POST['account_cb'] ) && empty( $_POST['account_password'] ) ) {
$errors->add( 'validation', 'Please enter a password.');
// wc_add_notice( __( 'Please enter a password.', 'woocommerce' ), 'error' );
}
} add_action( 'woocommerce_after_checkout_validation', 'woocomerce_validate_pass', 10, 2 );
// The jQuery code
add_action( 'wp_footer', 'move_checkout_create_an_account_js' );
function move_checkout_create_an_account_js() {
if ( ! is_user_logged_in() && is_checkout() && ! is_wc_endpoint_url() ) :
?>
<script>
(function($) {
// re-usable function to play around with the checkout fields if needed in the
const toggleElmVisibility = (selector = '', show = true, duration = 200) => {
if (show) {
$(selector).show(duration, () => {
$(selector).addClass("validate-required");
});
} else {
$(selector).hide(duration, () => {
$(selector).removeClass("validate-required");
});
}
$(selector).removeClass("woocommerce-validated");
$(selector).removeClass("woocommerce-invalid woocommerce-invalid-required-field");
}
// hide password fields on page load, unless they have alredy checked the checkbox
toggleElmVisibility('#account_password_field', $('#account_cb').is(':checked'));
$('#account_cb').on('change', function() {
toggleElmVisibility('#account_password_field', $(this).is(':checked'));
});
$('input[name=account_cb]').on('click', function() {
$('input[name=createaccount]').trigger('click');
});
})(jQuery);
</script>
<?php
endif;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论