I would like to add a line of text below the billing_email
field input box. The details are as follows.
Original HTML output.
<p class="form-row form-row-wide validate-required validate-email" id="billing_email_field" data-priority="110">
<label for="billing_email" class="">Email address <abbr class="required" title="required">*</abbr></label>
<span class="woocommerce-input-wrapper">
<input type="email" class="input-text " name="billing_email" id="billing_email" placeholder="" value="" autocomplete="email username">
</span>
</p>
Modified HTML output.
<p class="form-row form-row-wide validate-required validate-email" id="billing_email_field" data-priority="110">
<label for="billing_email" class="">Email address <abbr class="required" title="required">*</abbr></label>
<span class="woocommerce-input-wrapper">
<input type="email" class="input-text " name="billing_email" id="billing_email" placeholder="" value="" autocomplete="email username">
</span>
<br>
<span>Please enter the correct email address so that you can receive our emails.</span>
</p>
I tried to check the WooCommerce help documentation - Customizing checkout fields using actions and filters, but it was too difficult for me, so I am asking for help here.
Any help would be appreciated!