Hi there,
Is it possible to exclude one specific custom attribute from showing on the submission form? It should turn up im wp admin though. I would like to use it just for internal processing.
Cheers
Hi there,
Is it possible to exclude one specific custom attribute from showing on the submission form? It should turn up im wp admin though. I would like to use it just for internal processing.
Cheers
Hi,
that might be possible by modifying template file at wp-content/plugins/events-manager/templates/forms/event/attributes-public.php
To use templates: http://wp-events-plugin.com/documentation/using-template-files/
Hi,
sadly my php is a bit rusty:
Is it possible to hint me in the right direction?
Your help is really appreciated.
Cheers
Clemens
basically, you need to add a new php condition
e.g.
<?php if ($name != 'website'){ ?>
<div class="event-attributes">
--original code here--
</div>
<?php } ?>Works like a charm!
Thanks ever so much
C
You must log in to post.