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>';
}
Code language: PHP (php)