• Resolved tsubakuma

    (@tsubakuma)


    Hello.

    Is it possible to add an original inquiry number to the inquiry form?

    For example, the image is that the number starts with “E-” such as “E-9797890” and is automatically generated at random.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @tsubakuma

    Thank you very much for using our plugin.

    In short, you want to generate a random number starting with “E-” followed by seven digits.

    Insert a calculated field in the form and enter the following code as its equation:

    
    (function() {
      let digits = '0123456789', result = "E-";
      for (var i = 7; i > 0; --i) {
        result = CONCATENATE(result, digits[ROUND(RANDOM() * (digits.length - 1))]);
      }
      return result
    })()

    Best regards.

    Thread Starter tsubakuma

    (@tsubakuma)

    codepeople san

    Thank you!
    It’s God’s hand.

    Please tell me one more thing.
    What should I do if I want to make the numbers sequential instead of random?
    Sorry for being an amateur.

    Plugin Author codepeople

    (@codepeople)

    Hello @tsubakuma

    The plugin does it for you. It generates a unique and consecutive number with every submission. You can include this number in the notification emails and thank you pages after submitting the forms. However, it is a commercial feature, and we are not allowed to support any customers in these forums.

    For pro or commercial product support please contact us directly on our site. This includes any pre-sales topics as well.

    Commercial products are not supported in these forums. We will happily answer this and any other questions you can have on our own site.

    Thank you.

    Thread Starter tsubakuma

    (@tsubakuma)

    Thank you.
    I have purchased a Developer license, does that mean I can purchase it separately?

    Plugin Author codepeople

    (@codepeople)

    Hello @tsubakuma

    Your version of the plugin includes this feature. But please for questions related the plugin commercial versions contact us via the plugin website.

    Best regards.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Custom inquiry Numbers’ is closed to new replies.