I am working on this complex site.
I was trying to create a table to display all required fields on the download section. Each section has a category. And different information about the file. So this is my question.
I made a template. I need to add extra fields ( What do I need to do this, a CODE inserted on Function.php which is my prefered method )
Also, I made this table, on my new template, but the title keeps repeating on each new download. I just want to see the title on the top ONCE. Then the list of files under on the table. I am calling the table with this code,
[wpdm_category id="resources" items_per_page="5" jstable="1" toolbar="0" template="5e3b60f6edb26" cols="1" colspad="2" colsphone="1"]
This is my table,
<table>
<tr>
<th>File #</th>
<th>Name</th>
<th>Phase</th>
<th>Issued by</th>
<th>Updated Date</th>
<th>Download</th>
</tr>
<tr>
<td>[version]</td>
<td>[title]</td>
<td>Spain</td>
<td>[create_date]</td>
<td>[update_date]</td>
<td>[download_link]</td>
</tr>
</table>
I am sure I need to buy one of the plugins to make this work. Please help me.