Hello,
Just set up only one location, service and worker and it won’t show up as a choice in the form.
Also if you don’t want it to show up in booking overview, replace file: /wp-content/plugins/easy-appointments/src/templates/booking.overview.tpl
with this code:
<script type="text/template" id="ea-appointments-overview">
<small><%= settings['trans.overview-message'] %></small>
<table>
<tbody>
<% if (settings['trans.location'] !== '') { %>
<tr class="row-location">
<td class="ea-label"><%= settings['trans.location'] %></td>
<td class="value"><%= data.location %></td>
</tr>
<% } %>
<% if (settings['trans.service'] !== '') { %>
<tr class="row-service">
<td class="ea-label"><%= settings['trans.service'] %></td>
<td class="value"><%= data.service%></td>
</tr>
<% } %>
<% if (settings['trans.worker'] !== '') { %>
<tr class="row-worker">
<td class="ea-label"><%= settings['trans.worker'] %></td>
<td class="value"><%= data.worker %></td>
</tr>
<% } %>
<% if (settings['price.hide'] !== '1') { %>
<tr class="row-price">
<td class="ea-label"><%= settings['trans.price'] %></td>
<td class="value"><%= data.price %> <%= settings['trans.currency'] %></td>
</tr>
<% } %>
<tr class="row-datetime">
<td class="ea-label"><%= settings['trans.date-time'] %></td>
<td class="value"><%= data.date %> <%= data.time %></td>
</tr>
</tbody>
</table>
</script>
If you delete service, location or worker label in “customize” section in settings, it won’t show up in booking overview.
Regards,
Nemanja