Long time since I last compiled a list of ideas. At this point in time, as GDPR is now less than 3 months away and since everybody recognises that this is not just a EU issue, here is a list of existing ideas that we would really need to see implemented in order to make Marketo a tool that really helps marketers to be and remain compliant
Starting with information capture:
We also need to securely be able to process the double-optin, and therefore see removed the flaw inherent to the usage of triggers + filters in "person is created" smart campaign. See
Continuing with information storage compliance:
We also need more flexibility and control on how we can arrange forms:
Last but not least, GDPR drives to generalize preference center.
Any key point I have missed ? please feel free to comment, I'll add them.
-Greg
@Grégoire_Miche2 All your links are gone... 😐
Hi Gregoire,
We set up our Preference Center, and my question is when someone "unsubscribes", does it mean that person should no longer receive marketing email, and/or salesperson personal email?
My second question is in the backend, do you have a similar data folder breakdown like the CASL one (screenshot below), any best practice? In GDPR, do we need to capture why this person consent (event, opt-in email, form opt-in, etc)?
Hi Suzy,
Please open a new thread. You will get more visibility and more/quicker answers
-Greg
This is great! Thanks, Grégoire Michel!Grégoire Michel
This is fantastic, Grégoire Michel.
Secondary to the required fields in forms, I'd love to see a mechanism for handling subscription preferences for multiple brands in multiple workspaces under a single partition. It'd be great to have the security of the default unsubscribe field functionality without forcing people to opt out of everything.
Hi Grégoire Michel,
This is a simple suggestion and one that may well exist already, but it bugs the hell out of me.
The ability to choose the position of the Check Box without having to write CSS rules.
I don't understand why there is not a dropdown to pick where you would like the check box positioned (Left of label).
Thanks,
Gerard
Yes, the trick is in the "checkboxes" field type.
-Greg
Hi Gerard - you can do this today using the following attributes:
Hi Dan,
This was super helpful. Thanks for sharing.
I am interested in how you are presenting the next block of text below what you have highlighted ie "Avande is committed etc etc"
Any tips appreciated.
Mitch
Hi Mitchell - that's just a simple rich-text field:
And here it is live on our site: https://www.avanade.com/en/contact
Hi Dan Stevens,
Thanks so much for the tip.
When I tried this and made the field required the asterix is floating way up above it. You don't know the css used to target that asterix? I have tried a few different combinations and the style doesn't seem to take effect; and as its a form, I don't have the ability to add the style inline.
Thanks,
Gerard
Hey Gerard - since we're only capturing required data, we no longer need to indicate which fields are required. Therefore, we use this custom CSS on our forms (when they're used on Marketo LPs):
.mktoForm .mktoAsterix {
display:none!important;
}
Ahh,
Unfortunately, my form is asking for extra non-required information and the problem I have is that I only need to target the single asterix of the "terms and conditions" field. I have tried targeting the specific form label but it doesn't work and the div's on the forms don't have ID's. I guess I'm going to have to get creative and use some javascript. I should actually rephrase that last line to "Get creative and ask Sanford Whiteman for the solution".
Include my FormsPlus::Tag Wrappers script.
Then each of the rows will have a data- attribute like
<div data-wrapper-for="termsAndConditions">
and you can use that in your CSS:
.mktoForm [data-wrapper-for="termsAndConditions"] .mktoAsterisk {
display: none !important;
}
Thanks Sanford Whiteman,
I owe you a pint for this one.