Enable MailChimp email auto-categorisation
So that we don't have to file them away manually each time
This commit is contained in:
parent
4bfdd9eb14
commit
b4a4dabd8c
2 changed files with 16 additions and 0 deletions
|
@ -22,6 +22,13 @@ subscribe_form:
|
||||||
name: 'EMAIL'
|
name: 'EMAIL'
|
||||||
honeypot:
|
honeypot:
|
||||||
name: 'b_63d185e7c795f2758d0d07c8b_81720ca987'
|
name: 'b_63d185e7c795f2758d0d07c8b_81720ca987'
|
||||||
|
hidden_toggles:
|
||||||
|
- value: '1'
|
||||||
|
name: 'group[5838][1]'
|
||||||
|
id: 'mce-group[5838]-5838-0'
|
||||||
|
- value: '2'
|
||||||
|
name: 'group[5838][2]'
|
||||||
|
id: 'mce-group[5838]-5838-1'
|
||||||
|
|
||||||
nav_home:
|
nav_home:
|
||||||
- title: Home
|
- title: Home
|
||||||
|
|
|
@ -20,6 +20,15 @@
|
||||||
:name="Admin.subscribe_form && Admin.subscribe_form.honeypot.name || 'nothing'"
|
:name="Admin.subscribe_form && Admin.subscribe_form.honeypot.name || 'nothing'"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<div v-if="Admin.subscribe_form && Admin.subscribe_form.hidden_toggles">
|
||||||
|
<input
|
||||||
|
v-for="field in Admin.subscribe_form.hidden_toggles"
|
||||||
|
type="hidden"
|
||||||
|
:name="field.name"
|
||||||
|
:value="field.value || 'true'"
|
||||||
|
:id="field.id || null"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button id="" class="" type="submit">
|
<button id="" class="" type="submit">
|
||||||
|
|
Loading…
Reference in a new issue