• Hello, i notice that for every form there is the hidden input name=”_wpnonce
    is there a way to change the name of this input?
    is there a way to disable this nonce?

Viewing 1 replies (of 1 total)
  • Plugin Author Aurovrata Venet

    (@aurovrata)

    that is correct. This fixes the omission from the CF7 plugin that use the REST API to submit forms, and therefore allows authentication on the server side when a form is submitted by a logged-in user. (See the codex page). The nonce is created with the action wp-rest

    wp_create_nonce( 'wp_rest' )

    is there a way to change the name of this input?
    is there a way to disable this nonce?

    I don’t understand why you would want to do either? This nonce is used by WP core and should not be changed. You can remove or change its name if you really want to, but I would suggest you use your own nonce for custom verification.

Viewing 1 replies (of 1 total)
  • The topic ‘Disable nonce verification?’ is closed to new replies.