Menu Close

Get Support From ShopWired Close

All systems fully operational

Subscribe To Updates
Prefer To Live Chat? Chat directly with ShopWired support Available from 9.00am to 6.00pm Monday to Friday Quickest response time
Send A Message
Response within 24 hours

Menu Close

Menu

Adding multiple comments fields at checkout

On the checkout form you can add a comments field and ask the client to supply additional information for their order, such as special delivery instructions or a gift message, e.g.

<input type="text" name="comments">

If you need to ask your customers different questions at checkout, you can include multiple comments fields within the checkout form and our system will automatically concatenate all of the entries in each field and attach them to the order as a 'comment' which can then be viewed on the view-order page in the admin system.

To do so, just include multiple instances of the form input shown below.

<input type="text" name="comments[]">

For example

<p>
    <label>Gift wrap message</label>
    <input type="text" name="comments[]">
</p>
<p>
    <label>Any special delivery instructions?</label>
    <input type="text" name="comments[]">
</p>