I have WP 2.8.1 installed and the plugin still works for me, but not fully. The CONTACT FORM itself works perfectly, but the OPTIONS page doesn't show and returns the message "You do not have sufficient permissions to access this page". I tried to fix the problem myself, but I just couldn't make the OPTIONS page show. So I tried something else that works for me, at least until someone comes with a better way to fix this problem.
How to:
- At the Edit Plugins, open wp-contact-form/wp-contactform.php and insert the following code BEFORE the plugin code starts:
update_option('wpcf_email', __('email@provider.com', 'wpcf'));
update_option('wpcf_subject', __('Contact Form', 'wpcf'));
update_option('wpcf_showsubject', __('TRUE', 'wpcf'));
update_option('wpcf_success_msg', __('Thanks for sending your message!', 'wpcf'));
update_option('wpcf_error_msg', __('Please, fill the required fields.', 'wpcf'));
update_option('wpcf_question', __('2 + 2 =', 'wpcf'));
update_option('wpcf_answer', __('4', 'wpcf'));
update_option('wpcf_casesensitive', __('FALSE', 'wpcf'));
update_option('wpcf_copy', __('TRUE', 'wpcf'));
Just change the TRUE/FALSE and another options to whatever you like, just like you would do at the original OPTIONS page.