It’s actually quite easy to remove. The author already has functionality to disable the verification if the user is logged in. That verification simply needs to always return true to disable it altogether.
Edit visual-form-builder.php
Change line 2009
Old Code
if ( is_user_logged_in() ) {
New Code
if (1) {
Lastly comment out line 2020, it starts out like:
$verification .= '
Now no one will need to complete the verification, they will not even see it. The submit button will still remain in its own fieldset, which didn’t bother me.
I seemed to have it figured out. Here is my revised rewrite rule.
<Directory /usr/local/apache/wordpress>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
####### My Code ##############
# Convert xml files to a new structure i.e. data.xml to data-xml
RewriteRule ^(.*).xml$ /$1-xml/ [R]
# If the requested url does not contain .xml run the rest of the rules
ReWriteCond %{REQUEST_URI} !(\.xml)
####### End My Code ########
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
</Directory>