I'm using zen cart 1.3.9d with COWOA. I installed how_did_you_hear_about_us_v139a and it does work as intended. My question/problem is getting it working with COWOA which makes up about half of the checkouts in my cart.

Does anyone have how did you hear about us working with COWOA and if so what files did you work with to get it working?

I have tried copy paste of this rmh referral code

PHP Code:
<!-- //rmh referral start -->
 <fieldset>

<legend><?php echo TABLE_HEADING_REFERRAL_DETAILS?></legend>
<!--<?php echo zen_draw_separator('pixel_trans.gif''100%''10'); ?> -->
<!-- <?php echo CATEGORY_SOURCE?> -->
<label class="inputLabel" for="source" ><?php echo ENTRY_SOURCE?></label>
<?php echo zen_get_source_list('source', (DISPLAY_REFERRAL_OTHER == 'true' true false)) . '&nbsp;' . (zen_not_null(ENTRY_SOURCE_TEXT) ? '<span class="inputRequirement">' ENTRY_SOURCE_TEXT '</span>'''); ?>
<br class="clearBoth" />

<?php
 
if (DISPLAY_REFERRAL_OTHER == 'true') {
?>
<label class="inputLabel" for="source_other" ><?php echo ENTRY_SOURCE_OTHER?></label>
<?php echo zen_draw_input_field('source_other''''id="sources_other_name"') .  (zen_not_null(ENTRY_SOURCE_OTHER_TEXT) ? '<span class="inputRequirement">' ENTRY_SOURCE_OTHER_TEXT '</span>'''); ?>
<br class="clearBoth" />

</fieldset>
<?php
}
?>
<!-- //rmh referral end -->
from

/includes/templates/custom/templates/tpl_modules_create_account.php

into

/includes/templates/custom/templates/tpl_no_account_default.php


The input field showed up on the no account checkout form but when the info is entered the referral does not show up in admin/customers/customers


I also pasted the code into

/includes/templates/custom/templates/tpl_modules_no_account.php

the same happens as above. The info doesn't show up in admin.


What am I missing?