qteab / qterest
QTE Rest adds new endpoints for the Wordpress API
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 4
Type:wordpress-plugin
Requires
- drewm/mailchimp-api: ^2.5
- guzzlehttp/guzzle: ~7.8.1
- phpoffice/phpspreadsheet: ^1.10
- yahnis-elsts/plugin-update-checker: ^4.8
Requires (Dev)
- dev-master
- v1.7.0
- v1.6.5
- v1.6.4.1
- v1.6.4
- v1.6.3
- v1.6.2
- v1.6.1
- v1.6.0
- v1.5.1
- v1.5.0
- v1.4.12
- v1.4.11
- v1.4.10
- v1.4.9
- v1.4.8
- v1.4.7
- v1.4.6
- v1.4.5
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.9
- v1.3.8
- v1.3.7
- v1.3.6
- v1.3.5
- v1.3.4
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.1
- v1.1.0
- dev-imposter-plugin
- dev-custom-edit-page-fix-error
- dev-fix-email-attachments
- dev-update-guzzle
- dev-mailchimp
- dev-attachment-filter
- dev-dependabot/composer/guzzlehttp/psr7-1.9.1
- dev-multistep
- dev-Export-bug-fix
- dev-version1.6.1
- dev-gatsby-source-fix
- dev-phone-regex
- dev-lang-param
- dev-fix-typo
- dev-version-update
- dev-method-and-action
- dev-dependabot/composer/guzzlehttp/guzzle-6.5.8
- dev-feature/recaptcha-for-forms
- dev-feature/recaptcha
- dev-feature/file-uploads
- dev-feature/persistent-settings
This package is auto-updated.
Last update: 2025-03-21 12:25:49 UTC
README
This plugin can be used for making forms, newsletter signup (mailchimp) and search.
Installation
Follow these steps to install the plugin.
- Download the latest release as a zip.
- Go over to your wordpress admin panel.
- Go to "Plugins" and "Add New"
- Press "Upload Plugin" and select the file you downloaded earlier.
The plugin is now installed.
Contact
This part of the plugin handles the forms.
Creating forms
Creating forms can be done with qterest_render_form(array $args, bool $echo = true)
Arguments (array)
The following arguments are accepted
$args = [ 'wrapper_class' => "qterest-form-container", // (string) Overrides the default wrapper class 'form_class' => "qterest-form", // (string) Overrides the default form class 'form_row_class' => "qterest-form-row", // (string) Overrides the default form row class 'form_misc_class' => "qterest-form-misc", // (string) Overrides the default form misc class 'form_title' => "Contact form", // (string) Adds a h3-tag with the given content 'error_messages_class' => "qterest-error-messages", // (string) Overrides the default error message class 'success_message_class' => "qterest-success-messages", // (string) Overrides the default success message class 'form_fields_class' => "qterest-form-fields", // (string) Overrides the default form fields class 'submit_label' => __("Submit", 'qterest'), // (string) Overrides the default submit label 'submit_class' => 'button submit', // (string) Overrides the default submit class 'fields' => $fields, // (array) Check the next section ]
Fields
The following fields are accepted
$fields = [ [ 'type' => 'text', // REQUIRED (string) Possible values are text, email, file, tel, hidden and textarea 'name' => 'my_text_field', // REQUIRED (string) HTML Attribute name 'placeholder' => 'Text', // (string) HTML Attribute placeholder 'value' => 'some_value', // (string) HTML Attribute value 'label' => 'Text', // (string) Label text 'class' => 'form-control', // (string) Overrides default class 'required' => true, // (string) Is the field required? 'toggles_on' => 'my_checkbox_field', // (string) The id of the field that you want to toogle this field ], [ 'type' => 'checkbox', // REQUIRED (string) Possible values are checkbox and radio 'name' => 'my_checkbox_field', // REQUIRED (string) HTML Attribute name 'value' => 'yes', // (string) HTML Attribute value 'label' => 'Checkbox', // (string) Label text 'class' => 'form-control', // (string) Overrides default class 'toggles' => true, // (bool) Can this field toggle other fields? ONLY checkbox ], [ 'type' => 'select', // REQUIRED (string) Possible values are select 'name' => 'my_text_field', // REQUIRED (string) HTML Attribute name 'placeholder' => 'Text', // (string) HTML Attribute placeholder 'value' => 'some_value', // (string) HTML Attribute value 'label' => 'Text', // (string) Label text 'class' => 'form-control', // (string) Overrides default class 'toggles_on' => 'my_checkbox_field', // (string) The id of the field that you want to toogle this field 'options' => [ [ 'name' => 'My first option', // REQUIRED (string) The name of this option 'value' => 'my_first_option', // REQUIRED (string) The value of this option ], [ 'name' => 'My second option', // REQUIRED (string) The name of this option 'value' => 'my_second_option', // REQUIRED (string) The value of this option ] ] ], ]
Misc
It's also possible to put misc in the fields array. These miscs are accepted
$fields = [ [ 'type' => 'title', 'text' => 'Hejsan', 'size' => '3' // This will be a h3 element ], [ 'type' => 'paragraph', 'text' => 'Lorem ipsum dolor sit' ], [ 'type' => 'link', 'href' => 'https://google.com', 'text' => 'Google.se' ] ]
Example form
This is a example of a very basic contact form
qterest_render_form([ 'form_title' => 'Simple contact form', 'submit_label' => __('Send', 'text_domain') 'fields' => [ [ 'type' => 'text', 'name' => 'name', 'label' => 'Name', 'placeholder' => 'Sven Svensson', ], [ 'type' => 'email', 'name' => 'email', // This field is required by the plugin 'label' => 'Email *', 'required' => true, 'placeholder' => 'sven.svensson@company.com', ], [ 'type' => 'textarea', 'name' => 'message', 'label' => 'Message', 'placeholder' => 'Hello! I have a question about...', ], [ 'type' => 'checkbox', 'name' => 'gdpr', 'label' => 'I agree to the following <a href="google.se">terms</a>', 'required' => true, ] ] ]);
Filters and Actions
There is a few filters and actions available for you to customize som things
Messages
Example for customizing messages
function theme_custom_qterest_messages($messages, $params) { $messages['success'] = __("Thank you! We will contact you as soon as possible!", 'text_domain'); return $messages; } add_filter('qterest_contact_messages', 'theme_custom_qterest_messages', 10, 2);
The following messages can be changed
- name_empty
- email_empty
- email_invalid
- failed
- success
- mail_subject
- mail_body
- mail_to
Form submission data can be accessed through the $params
parameter
Filter to remove attachments after request
You can use the following filter to remove attachments after a request
function theme_remove_attachment_after_request($remove, $params, $post_id) { // You may access $params or $post_id if you wish to remove attachments conditionally $remove = true; return $remove; } add_filter('qterest_contact_remove_attachments_after_request', 'theme_remove_attachment_after_request', 10, 3);
Formatting keys (ADMIN)
When looking at a contact request you can see that the name of the field identifies the value. This can be changed by adding a filter to display a better name for the customer. The filter name looks like this qterest_format_key_${key}
.
function theme_format_keys_bulk($key) { return "Does this person have a dog?"; } add_filter('qterest_format_key_has_dog', 'theme_format_key_has_dog');
You can also bulk format keys with the filter qterest_format_bulk_keys
.
function theme_format_bulk_keys($key) { return [ 'has_dog' => "Does this person have a dog?", 'email' => __("Email address", 'text_domain'), // TIP: You can use localization here if the site is multi language ] } add_filter('qterest_format_bulk_keys', 'theme_format_bulk_keys');
Fields
You can change the HTML of the fields with this filter. The filter name looks like this qterest_contact_field_${field_type}_html
Example of custom checkbox field
function theme_custom_checkbox_field_html($field, $args) { $newField = "<label for=\"$args[id]\">$args[label]</label>"; $newField = "<input id=\"$args[id]\" type=\"$args[type]\" name=\"$args[name]\" value=\"$args[value]\""; return $newField; } add_filter('qterest_contact_field_text_html', 'theme_custom_checkbox_field_html', 2, 10);
Frontend
QTE Rest provides basic javascript to make the forms asynchronous. It also triggers events if the form submission succeeds or fails.
There is 2 events available to listen on.
- qterestSubmitted
- qterestError
Example usage of the events
$('.qterest-form').on('qterestSubmitted', function (event, data) { $('.somediv').html(`<h1>${data.success_msg}</h1>`) // qterestError contains error_msg instead })
MailChimp
MailChimp is very esay to use with this plugin. All you have to do is to add a API key in the settings page and select the list you want the users to be added to.
Subscribe form
There is a helper function available for rendering MailChimp forms.
qterest_render_mailchimp_form(string $input_label, string $submit_label, bool $echo = false);
Example
qterest_render_mailchimp_form("Email", "Subscribe");
Filter
If you need to change the arguments of the field you can use the filter qterest_mailchimp_field_arguments
.
Example usage of the filter
add_filter('qterest_mailchimp_field_arguments', 'theme_mailchimp_field_arguments'); function theme_mailchimp_field_arguments( $field ) { $field['type'] = 'text'; return $field; }
Coming soon
- Search Documentation
Future plans
- Form builder in React
- Frontend form in React
This plugin is built and maintained by Noah Olsson