Comments 1our_agency started the conversationSeptember 18, 2018 at 1:34pmHi,I have set up an event which is set over 3 days. http://csvtraining.co.uk/stec_event/iosh-managing-safely/The event is showing 3 days to select from the date dropdown when booking, but should only be showing 25.09.2018 as this is when the event starts.It is showing the event is available to book as 3 separate dates, even though it's the same event.Is this something you could help with?Thanks 877Zhivko repliedSeptember 19, 2018 at 1:01pmHi, Open your theme functions.php file and add following code at the bottom: add_action('wp_footer', function() { global $post; if (!$post || !isset($post->post_type) || $post->post_type !== 'stec_event') { return; } ?> <script type="text/javascript"> (function ($) { $(function () { $('select[name="stec_book_date"]').children().filter(':gt(1)').remove(); $('select[name="stec_book_date"]').children().last().prop('selected', true); }); })(jQuery); </script> <?php}); Stachethemes Developer 1our_agency repliedSeptember 19, 2018 at 1:30pmThanks thats worked a treat :)Michael1 Like Sign in to reply ...
Hi,
I have set up an event which is set over 3 days. http://csvtraining.co.uk/stec_event/iosh-managing-safely/
The event is showing 3 days to select from the date dropdown when booking, but should only be showing 25.09.2018 as this is when the event starts.
It is showing the event is available to book as 3 separate dates, even though it's the same event.
Is this something you could help with?
Thanks
Hi,
Open your theme functions.php file and add following code at the bottom:
Stachethemes Developer
Thanks thats worked a treat :)
Michael