• Resolved thortor

    (@thortor)


    Hi,

    I am creating this ticket concerning other topic on support page where you provided code that shows remaining number of submissions of select field. Unfortunately the code is not working, maybe I am missing something that is not clear to me. I provided correct form id and correct select field id but code seems to not work anyway. I am attaching page url where I inserted the form.

    Thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @thortor,

    I’m afraid, I’m not sure whether I understood your query. Just to be sure, you are facing with “Limit” set in Select fields not working, right?

    If yes, I gave a quick test and was able to notice it’s working on your mentioned page. The option with “limit 1” set is no longer showing up in your form once tested:
    Screenshot from 2021-09-23 17-33-20.png

    Could you please advise if I’m missing out on anything from the above test? Also please share the URL of the ticket where you tested the given code, so that it would be easy for us to have a better idea?

    Looking forward to your response.

    Kind Regards,
    Nithin

    Thread Starter thortor

    (@thortor)

    Yes right sorry. This is url of previous ticket
    https://wordpress.org/support/topic/show-remaining-number-of-submissions/#post-14899484

    It was about showing info how many submissions is left of the chosen option under select field

    $html .= "<p>" . $option['label']. " submission limit: " . $option['limit'];
    					$html .= " Still another {$remaining} to go, so hurry up!";
    Plugin Support Adam – WPMU DEV Support

    (@wpmudev-support8)

    Hi @thortor

    I hope you’re well today!

    I checked the original code and it seems that due to some changes in Forminator plugin (since original code was shared) it needed some slight adjustments.

    I’m sharing updated (for current version of Forminator) code here:

    https://gist.github.com/adczk/06f24899b1512e24f4757d7296591bdf

    Please replace the code that you tested with this one and to configure it:

    – set form ID(s) in this line

    $list_form_ids = array(1177); // set form ID(s) here

    – set select field ID(s) in this line; note the format, please, it no longer needs “-field” part

    $select_ids = array( 'select-1' ); // set select field(s) IDs here

    – and, finally, you can adjust your message here

    // adjust message text in two lines below
    $html .= "<p>" . $option['label']. " submission limit: " . $option['limit'];
    $html .= " Still another {$remaining} to go, so hurry up!";

    I’ve tested it and I can confirm it’s a working code.

    Best regards,
    Adam

    Thread Starter thortor

    (@thortor)

    Thanks for help and fast reply. Great support. I also confirm that code works wonderfully.

    Best regards

    • This reply was modified 2 years, 6 months ago by thortor.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Show remaining number of submissions of select field’ is closed to new replies.