| 开发者 | slobostep |
|---|---|
| 更新时间 | 2026年8月13日 20:06 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 7.0 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
revisend-for-contact-form-7 folder to /wp-content/plugins/.Yes. Files are validated and temporarily stored on the server between the review step and the confirmed submit, then attached to the mail.
The confirmation step requires JavaScript. For forms with the step enabled, submissions without a confirmation token are blocked.
Anything that hooks into the standard Contact Form 7 submission flow works with the confirm step. Add-ons that hijack the submit button itself may interfere with the review step.
Yes. The labels are translatable and can also be customized with the
cf7rb_review_labels filter. Example for your theme's functions.php:
add_filter( 'cf7rb_review_labels', function( $labels ) {
$labels['confirm'] = 'Send Now';
$labels['edit'] = 'Go Back';
$labels['heading'] = 'Review your message';
return $labels;
} );
Available labels: heading, intro, edit, confirm,
error, accepted, declined.