cart->needs_shipping() ) : ?>
get_checkout_fields( 'billing' );
foreach ( $fields as $key => $field ) {
if ( isset( $field['country_field'], $fields[ $field['country_field'] ] ) ) {
$field['country'] = $checkout->get_value( $field['country_field'] );
}
if ( apply_filters( 'stm_is_auto_parts', false ) ) {
$field['placeholder'] = $field['label'];
}
woocommerce_form_field( $key, $field, $checkout->get_value( $key ) );
}
?>
is_registration_enabled() ) : ?>
is_registration_required() ) : ?>
get_value( 'createaccount' ) || ( true === apply_filters( 'woocommerce_create_account_default_checked', false ) ) ), true ); ?>
type="checkbox" name="createaccount" value="1"/>
get_checkout_fields( 'account' ) ) : ?>
get_checkout_fields( 'account' ) as $key => $field ) :
if ( apply_filters( 'stm_is_auto_parts', false ) ) {
$field['placeholder'] = $field['label'];
}
?>
get_value( $key ) ); ?>