Events Made Easy Forums Bug fixed or feature request implemented change number of seats in seats dropdownlist

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #58534
    Anonymous
    Inactive

    I like to limit the number to 1.
    I that possible?

    #58536
    Franky
    Keymaster

    Set the min and/or max to 1 when defining your rsvp settings.

    #58541
    Anonymous
    Inactive

    Thanks.
    I see now on a test site that that only works when you fill in a number of max places.
    We used normally 0 (for unlimited).
    Can that be solved?

    #58543
    Franky
    Keymaster

    Well, that is not the intended behavior 🙂
    I’ll take a look at fixing that later on this weekend, for now moving to bugs.

    #58544
    Franky
    Keymaster

    This should fix it (not yet committed in code). Go in eme_formfields.php and change line 1343
    from:
    if ($real_max_allowed > $avail_seats || $real_max_allowed==0)

    to:
    if ($event_seats>0 && ($real_max_allowed > $avail_seats || $real_max_allowed==0))

    #58545
    Anonymous
    Inactive

    Thanks for your help.
    But unfortunately it does not work.
    Dropdown is 1-10

    #58546
    Franky
    Keymaster

    Tried it here and that change works as expected …

Viewing 7 posts - 1 through 7 (of 7 total)
  • The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.
Scroll to Top