Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Of course.
(Please use the Syntax Highlighter (“Insert/Edit Code Sample”) when adding code so it’s readable. I edited your post this time.) Who wrote this code? It makes little sense as the form fields can never be called UTM Source, UTM Medium, and UTM Campaign. Form field names (a.k.a. SOAP API names) do not...
Do you have that field checked in the tree on the right-hand-side of Script Editor?
As with any cross-system sync, a unique identifier is used to maintain the relationship. You cannot use the email address as the persistent identifier of the record across the two systems. That’s simply impossible, since the email address could change on either side at any time. We want Marketo to c...
#set( $stripTrailingDot = $YourField.replaceAll("\.$","") )
Replacing $lead.YourEmailField with whatever the Velocity object/field name is for your BDR email:#set( $emailField = $lead.YourEmailField )#set( $lhs = $emailField.substring(0,$emailField.lastIndexOf("@")) )#set( $lhsParts = $lhs.split("\.") )#set( $impliedFirstName = $lhsParts[0] )#set( $impliedLa...
Native Visibility Rules and Progressive Profiling pack immense power. But one thing they can’t do is change whether a field is required: if a field is displayed per VR and/or ProgPro rules, it simply picks up the Required setting from Form Editor. This means you need JS for advanced behaviors. Say C...
Modern browsers (that post is from 9 years ago) no longer forward the entire referrer cross-origin by default. You have to add a meta tag for that to still work:
when a bulk email is sent—for example, to 50,000 records—does the Velocity script render the content properly? I'm asking because support mentioned that the email might fail to send.Wow, that’s a bizarrely incorrect thing for them to say. We send Velocity-powered emails regularly to hundreds of thou...
For page-level restriction, a CDN/proxy or internal hosting approach would be needed.Simply putting a CDN or reverse proxy in front of Marketo won’t work: you’ll end up getting rate-limited by Cloudflare. And even before you get to rate limiting, if someone knows your Munchkin ID — which everyone do...