• Resolved rsdkd

    (@rsdkd)


    ?nderungsprotokoll

    4.9 (2023-02-23)

    Hinzugefügt

    • Eine Honeypot-Einstellung wurde erg?nzt, um Spam zu bek?mpfen.
    jQuery(document).ready(function ($) {
    	
    // ggf. prüfen ob die Form vorhanden ist.
    // ohne l?st es bei uns einen jQuery Fehler aus
    if ($('#onoffice-form').length > 0) { 	
    	
        if (honeypot_enabled['honeypotValue'] == true && form['type'] !== 'applicantsearch') {
            var messageTextarea = $('textarea[name="message"]');
            var messageInput = $('input[name="message"]');
            if(messageTextarea.val() == ''){
                var newInput = $('<textarea>').attr({
                    'type': 'text',
                    'name': 'tmpField',
                });
                messageTextarea.replaceWith(newInput);
            } else if (messageInput.val() == '')  {
                var newInput = $('<input>').attr({
                    'type': 'text',
                    'name': 'tmpField',
                });
                messageInput.replaceWith(newInput);
            }
            var label = $('<label>').text('Message:').attr("class", "message");
            var input = $('<input>').attr({
                'type': 'text',
                'name': 'message',
                'class': 'message'
            });
            $("#onoffice-form").prepend(input);
            $("#onoffice-form").prepend(label);
            var originalInput = $('input[name="message"]');
            originalInput.before(label, input);
        }
    	
    }
    	
    });

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author onOffice GmbH

    (@onofficeweb)

    Hallo @rsdkd vielen Dank für den Hinweis.

    Das Honeypot ist gerade nochmal in überarbeitung. Sollten nach dem neuen Release weiterhin Probleme bestehen, stellen Sie gerne einen Pull Request in unserem Github Repository.

    Freundliche Grü?e
    Frederic

    Plugin Author onOffice GmbH

    (@onofficeweb)

    Hallo @rsdkd ,

    da wir keine weitere Antwort erhalten haben, werde ich dieses Thema als erledigt markieren.

    Freundliche Grü?e
    Frederic

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘jQuery error on pages with no form’ is closed to new replies.