הוספת "אישור תקנון" לדף התשלום
Wed Jan 05 2022 16:41:15 GMT+0000 (UTC)
Saved by
@Shesek
function cw_custom_checkbox_fields( $checkout ) {
echo '<div class="cw_custom_class"><h3>'.__('אני מאשר/ת את תקנון האתר/חנות: ').'</h3>';
woocommerce_form_field( 'custom_checkbox', array(
'type' => 'checkbox',
'label' => __('אני מאשר/ת את תקנון האתר/חנות'),
'required' => true,
), $checkout->get_value( 'custom_checkbox' ));
echo '</div>';
}
content_copyCOPY
קרדיט: שמעון סביר
Comments