Hi,
When you join a club, you check a box for “Add a gift message or special instructions”. When you check that, two text fields start displaying:
- Gift Message
- Club Notes / Special Instructions
I have a feeling this is a mistake. If you move the div with class v65-gridRow v65-specialInstructions outside of the div that looks like this, then they can leave club notes/special instructions without flagging it as a gift order. The two are unrelated.
Change this:
<div class="v65-gridRow v65-giftMessage">
<div class="v65-gridCol-12">
<label for="giftMessage">Gift Message</label>
<textarea id="giftMessage" name="giftMessage" v65js="giftMessage" maxlength="249"></textarea>
<br/><span v65js="giftMessageMaxLength">249</span> characters left.
</div>
</div>
<div class="v65-gridRow v65-specialInstructions">
<div class="v65-gridCol-12">
<label for="notes">Club Notes / Special Instructions</label>
<textarea id="notes" name="notes" v65js="orderNotes" ></textarea>
</div>
</div>
</div>
To this:
<div class="v65-gridRow v65-giftMessage">
<div class="v65-gridCol-12">
<label for="giftMessage">Gift Message</label>
<textarea id="giftMessage" name="giftMessage" v65js="giftMessage" maxlength="249"></textarea>
<br/><span v65js="giftMessageMaxLength">249</span> characters left.
</div>
</div>
</div>
Club Notes / Special Instructions
</div>
</div>
I tested it and it works great.