Move an Autofill Menu into the Body of your ezMerge Template. Follow
We will need to add two "Script" fields to your order form to accomplish this.
One of them will contain a script and the second will contain CSS.
The text below is an example, please make sure to replace the variable data listed below.
- EM-ITEM-NAME: The name of your Order Form field for the ezMerge item.
- EM-FIELD-NAME: The field name on the ezMerge template you want to append/add your autofill below.
- AUTOFILL-FIELD-NAME: The name of the autofill field you are moving.
Here is the script you will add. Please make sure to replace EM-ITEM-NAME, EM-FIELD-NAME, AUTOFILL-FIELD-NAME
<script type="text/javascript"> <!-- $(document).ready(function () { $("#row_udf_EM-ITEM-NAME\\:EM-FIELD-NAME").append($("#row_udf_AUTOFILL-FIELD-NAME")); }); --> </script>
Here is the CSS you will add. Make sure to replace AUTOFILL-FIELD-NAME
<style> #row_udf_AUTOFILL-FIELD-NAME > span {width: auto!important;} #row_udf_AUTOFILL-FIELD-NAME {margin-top: 0.33em;} </style>