Remove email and comment from enty table they will go to costum values

This commit is contained in:
2026-05-09 00:54:23 +02:00
parent 8b54aff9ac
commit bd7b9e1731
5 changed files with 1 additions and 20 deletions

View File

@@ -99,15 +99,8 @@
<label for="egd_number">EGD Number:</label><input type="text" name="egd_number" id="egd_number">
</div>
<div>
<label for="email">Email:</label><input type="email" name="email" id="email">
</div>
</div>
<label for="comment">Comment</label>
<textarea name="comment" id="comment" rows="3"></textarea>
<p>* Required fields</p>
<input type="submit" name="go_form_submit" value="Submit">
</form>

View File

@@ -10,9 +10,7 @@
<th>Date Added</th>
<?php if ($show_admin): ?>
<th>Rating</th>
<th>Email</th>
<th>Action</th>
<th>Comment</th>
<?php endif; ?>
</tr>
</thead>
@@ -32,11 +30,9 @@
<?php if ($show_admin): ?>
<td> <?= esc_html($e->rating) ?> </td>
<td> <?= esc_html($e->email) ?> </td>
<td>
<?php action_button('go_form_delete_entry', 'Delete', 'Delete this entry?', $e->id); ?>
</td>
<td> <?= esc_html($e->comment) ?> </td>
<?php endif; ?>