Multiple Activities Creating Multiple Emails

Home Forums Legacy Support Support queries How-to & Troubleshooting Multiple Activities Creating Multiple Emails

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #241470
    iliasoftware
    Spectator
    Same problem described here https://wplms.io/support/forums/topic/multiple-activities-creating-multiple-emails/ The only difference is this happens during assignment submission https://prnt.sc/qxhinl Can you give me a script to limit the number of clicks to one in the assignments submission
    #241471
    iliasoftware
    Spectator
    This reply has been marked as private.
    #241510
    logan
    Member
    This reply has been marked as private.
    #241521
    iliasoftware
    Spectator
    Logan can you stop wasting my time and fix the bug? the assignment upload is bugged allowing multiple clicks.
    #241612
    logan
    Member
    use this code in wplms >> footter >> google analytics. <script> jQuery(document).ready(function($){ var count = 5, $btn = $('div#assignment p.form-submit input#submit'); //Or which ever you want //Change the label of $btn $btn.val($btn.val()+' ('+count+')')   $btn.click(function(){ $btn.val($btn.val().replace(count,count-1)); count--; if(count==0) { return !$btn.attr('disabled','disabled'); } }); }); </script> allow the button click as per your requirement. refer: https://share.getcloudapp.com/OAuLYY8r Note: "Logan can you stop wasting my time and fix the bug? the assignment upload is bugged allowing multiple clicks." refer: https://share.getcloudapp.com/E0uExxXP it's not a bug, its a simple html structure. if you goto forum or in #facebook#linkedin message/ post section and if you click the send button 10 times the message will go the 10 times. you can test my statement.
    #241647
    iliasoftware
    Spectator
    thanks confirmed working
    #241742
    Veronica
    Moderator
    thanks for your confirmation. closing the topic.
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Multiple Activities Creating Multiple Emails’ is closed to new replies.