Which File Processes The HTML Markup of The Create Listing Custom Fields?
Hi,
I would like to make some changes and additions to the HTML markup for the Create Listing page.
This is the HTML markup output for the custom fields:
HTML Code:
<div class="form-field">
<label>Company Name <input class="required" id="app_companyname" name="app_companyname" type="text"></label>
</div>
First thing I would like to do, is to change that to different HTML markup:
HTML Code:
<div class="form-field">
<label>Company Name</label>
<input class="required" id="app_companyname" name="app_companyname" type="text">
</div>
Secondly I would like to wrap a holding div for the collection of <div class="form-field"> divs.
There is already a div called: <div id="custom-fields">
However that one is not pulled in dynamically when selecting an option in the category menu.
Therefor I can not style <div id="custom-fields"> because I don't want any styling to show yet if there is no Category selection been made.
So the second question is, how can I add another holder div?
It seems to me these changes need to made in the file: /includes/custom-forms.php
But when I made changes in that file, which is located now in a child theme folder, nothing happens.
It still pulls the file from the parent Vantage theme folder.
I only changed the <div class="form-field"> to <div class="form-fields"> because I don't know how to change the php code in order to get the desired HTML markup output outlined above.
Your help is much appreciated!
Can donate beer money!!