Viewing 8 replies - 1 through 8 (of 8 total)
  • Hiya,

    When you say people are booking multiple places, do you mean at the same time or by making repeat bookings?

    Thanks,
    Phil

    I think iobserve mean the dropdown list is show if the the single ticket mode is set ON.
    I have the same question.
    I don’t want the dropdown list for places to be shown.

    Thread Starter iobserve

    (@iobserve)

    Thank you @djaouws, that’s it exactly.
    Is there any way to do this?

    Cheers,
    Koen

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    if you limit your ticket to maximum of one booking, it won’t even show the dropdown and restrict bookings to 1 place.

    Thread Starter iobserve

    (@iobserve)

    Thanks!

    How do I get the booking / price spaces drop down to show 1-4
    I have the minimum set to 1 and maximum set to 4

    The drop down only shows 2,3,4

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    If you could supply a link, that may help.

    I’m suspecting that your theme is causing the problem (try switching temporarily to verify), I’ve seen in some rare cases themes adding paragraphs within the form html and in some cases the 1 goes missing.

    In my theme folder I had to create single-event.php with the following code to fix this issue.

    <?php get_header(); ?>
    <div class="single_post_module">
    
     <?php
      global $post;
      $EM_Event = em_get_event($post->ID, 'post_id');
     ?>
    
     <div id="post-<?php $post->ID; ?>">
      <div class="single_post_content">
        <h2 class="post_title"><?php echo $EM_Event->output('#_EVENTNAME'); ?></h1>
        <div class="entry">
         <?php echo $EM_Event->output( get_option('dbem_single_event_format') ); ?>
        </div>
      </div>
     </div>
    </div><!-- #single_post_module -->
    
    <?php mysite_after_post(); ?>
    <?php comments_template( '', true ); ?>
    <?php mysite_after_page_content(); ?>
    <div class="clearboth"></div>
    </div><!-- #main_inner -->
    </div><!-- #main -->
    
    <?php get_footer(); ?>
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Number of places; allow single place bookings only’ is closed to new replies.