This is an example plugin to add custom fields to your Shopware 6 newsletter subscription form. Used in conjunction with the Maileon plugin, the fields created can be submitted to Maileon as contact fields. The added fields are not stored in Shoprenter.
Starting from plugin version 1.3.0, it is possible to submit standard fields through the form. In this case, version 1.1.0 should be used; older plugin versions are only compatible with version 1.0.0.
Installation
Attachments |
---|
The installation package can be downloaded here.
...
fieldName: Here you have to enter the name of the field, this will be the identifier, it will not be visible on your frontend. This will also be the name of the custom contact field in Maileon. If no custom contact field with this name exists in Maileon, the Maileon Plugin will create it. In the settings of the Maileon plugin you have to enter this name, if there are more than one field the names have to be separated by semicolons (https://maileon.atlassian.net/wiki/spaces/MSI/pages/2385674241/User+documentation+-+EN#Configuration ). Must not contain whitespaces!
type: Here you can specify the field type. You can set any type, but in Maileon the custom contact field type will be string!
label: The name of the field, this will appear on the frontend.
placeholder: To set the placeholder of the field.
Send standard fields (only with plugin version 1.3.0 and above)
We can submit standard fields with the following field names:
Field name | Standard field | Remark |
---|---|---|
|
| String, max 255 |
|
| Allowed patterns: YYYY-MM-DD |
|
| String, max 255 |
|
| String, max 255 |
|
| Allowed values: m (male), f (female), or d (divers) |
|
| String, max 255 |
|
| Allowed patterns: YYYY-MM-DD |
|
| String, max 255 |
|
| String, max 255 |
|
| String, max 255 |
|
| String, max 255 |
Examples
Birthday
Code Block |
---|
<div class="row g-2"> {% block cms_form_newsletter_input_birthday %} {% sw_include '@Storefront/storefront/element/cms-element-form/form-components/cms-element-form-input.html.twig' with { fieldName: 'birthday', type: 'date', additionalClass: 'col-12', label: 'Birthday' } %} {% endblock %} </div> |
Gender
Code Block |
---|
<div class="row g-2">
{% block cms_form_select_gender_content_label %}
<label class="form-label" for="form-Gender">
Gender
</label>
{% endblock %}
{% block cms_form_select_gender_content_select %}
<select name="gender"
id="form-Gender"
class="form-select"
style="margin-bottom: 20px;">
<option value="m">
Male
</option>
<option value="f">
Female
</option>
<option value="d">
Diverse
</option>
</select>
{% endblock %}
</div> |