Comment out lines 251 and 252 in “usersubmission.php”
if ($valid == false && ($options['showcaptcha'] == true || $options['showcustomcaptcha'] == true))
{
and line 300
}
This will force the form variables to be passed in the query_string regardless of the status of the submission.
Then you can use a plugin like “Exec-PHP” (https://bluesome.net/post/2005/08/18/50/) to enable php in your admin posts/pages/widgets and output the data using
echo '<p>Label: ' . $_GET['variablename'] . '</p>';
or a foreach loop or what-have-you.
You’re limited by the maximum length of a query string, but since it’s usually a few thousand characters (depends on server, browser, language) you’re probably safe there.
You may also want to add length checks to all incoming data to prevent buffer overrun attacks via this page.
The downside to this is that to preserve your changes you’ll have to edit “usersubmission.php” every time there’s an update to the plugin.