What am i missing here?
Simple. Check your number 2 step again (you posted above). You have decided to create both of these fields as textarea fields. Meaning, you are not using the right arrays structure in order to be shown correctly under your customer's form end and under the admin's customers page. :wink2:
Technicly, change:
$additional_customers_fields_form_input_title['customers_whole'] = array('Wholesale Level: ');
$additional_customers_fields_form_input_title['customers_wholesale_id'] = array('Tax ID: ');
with:
$additional_customers_fields_form_textarea_title['customers_whole'] = array('Wholesale Level: ');
$additional_customers_fields_form_textarea_title['customers_wholesale_id'] = array('Tax ID: ');
Additional note: Make sure that your fields contains something inside (logically). Otherwise, it will NOT be shown since it would be quite useless to see empty fields from customers if the customers themselves wouldn't want to fill them out right ? :wink2:
It's also a good way to save out ressources on our websites. :cool:
As for the customer's end, if they cannot see it either, it means that you're not using the correct condition statement related under your template files 'or' did not incorporated my modules correctly under your overrides modules files (as shown from my package originally).