4

我不知道您需要多少信息,但 WP-ContactForm-7 是 WordPress 的联系表格。默认情况下,它对网站上的所有表单都有一个服务器响应消息。我有多种形式,并希望为每一种形式提供不同的服务器响应消息。

如何为使用此插件创建的每个不同表单创建不同的服务器响应消息?

以下是插件中的 PHP 代码片段,似乎与联系表单显示的消息有关:

function message($status) {
    switch ($status) {
        case 'mail_sent_ok':
            return __('Your message was sent successfully. Thanks.', 'wpcf7');
        case 'mail_sent_ng':
            return __('Failed to send your message. Please try later or contact administrator by other way.', 'wpcf7');
        case 'validation_error':
            return __('Validation errors occurred. Please confirm the fields and submit it again.', 'wpcf7');
        case 'accept_terms':
            return __('Please accept the terms to proceed.', 'wpcf7');
        case 'invalid_email':
            return __('Email address seems invalid.', 'wpcf7');
        case 'invalid_required':
            return __('Please fill the required field.', 'wpcf7');
        case 'captcha_not_match':
            return __('Your entered code is incorrect.', 'wpcf7');
    }
}

如果这还不够信息,那么您可以从这里下载文件并查看整个源代码。

4

1 回答 1

7

如果您确保已升级到此插件的最新版本,则可以创建多个表单,每个表单都有自己的响应消息。

要创建新表格,请转到工具 -> 联系表格 7,然后单击“添加新表格”(顶部为红色)。

填写您的新表单详细信息,然后转到“消息”并单击“显示”。您可以在此处填写针对此表单的回复。完成后,再次向上滚动并单击右侧的“保存”按钮。

然后,您可以使用以下内容在帖子中包含指向此其他表单的链接:

[联系表格 2“我的第二个表格”]

(实际使用的代码将显示在用于编辑表单的页面上。)

于 2009-06-22T12:58:24.847 回答