How do I put spaces in custom form fields?
I am trying to create a custom form with the fields "Minimum Order" and "Delivery Fee". But the only way I can get it to work is to make it "minimumorder" and "deliveryfee". I don't mind having it lower-case and all-one-word in my csv file but I'd like it to look better on the actual listing. How can I get the spaces and caps in there?
This is what I have in my functions.php
function my_custom_csv_fields( $args )
{
$args['custom_fields']['minimumorder'] = array( 'internal_key' => 'app_minimumorder' );
$args['custom_fields']['deliveryfee'] = array( 'internal_key' => 'app_deliveryfee' );