Custom forms + Polylang

for the action label, there are some reserved terms, that wordpress uses internally. so you should avoid this terms (specially true in http_post ot get requests). ‘s’ stands for search, that’s why the output is a search result page. here you can find reserved terms: https://codex.wordpress.org/Reserved_Terms If you need very simple forms (so it seems … Read more

wp_nonce for Front-End submission form not working

You missed the wp_nonce_field action name. wp_nonce_field(‘submit-users-note”notes_nonce_field’ ); $nonce = $_POST[“notes_nonce_field”]; if ( ! isset($nonce) ! wp_verify_nonce( $nonce, ‘submit-users-note’ ) ) { exit; // Get out of here, the nonce is rotten! }

Preventing form resubmission on contact form plugin

You can setup a wp_nonce_field to act as a single use token. You can then wp_verify_nonce to make sure the action requested matches the token. A more ideal way is to just use an AJAX solution and submit + respond using javascript. That will allow you to stay on the page and show/hide elements required … Read more

import excel form into wordpress

I honestly think you’d be better off just doing it manually. ~200 rows of items isn’t really that much, relatively. And even if you did find a way to import the excel file to make a form out of it, you’d still need to edit most of the data fields anyway. I highly doubt you’d … Read more