Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
If you were using Person Was Created w/an infinite date lookback, then yes, everyone who filled out the form. By definition, everyone who fills out a form was created!
1. Is Jquery a good way to use in form?I try to avoid jQuery whenever possible. Using vanilla JS is more portable and just as efficient (in some cases much faster). 2. Do we have to update the code when I add new fields in form (If I use the method that you shared)?No, you only have to include field...
Velocity is already verbose, but you’ve still gotta code defensively even if that means a little more code. Crucially, in the Marketo-Velocity ecosystem, don’t assume code will only run in the context of a Person record. Prepare for person fields and object lists to be empty. This is true, for examp...
Feel your pain on this. I generally don’t trust the Design Studio UI to allow for a lot of bulk actions. What you can do (if you are/have a developer) is use the REST API to manipulate DS assets, it’s fully reliable.
there is a daily file transfer that appears to be customer data (name, email, etc) and custom object (type of account, when opened, etc) that captures any new customers and places them into a workflow (existing Onboarding Journey).Not sure what you mean by “file transfer” as there’s no such thing as...
I was wondering if I can run something by someone: I have two filters in a trigger campaign Trigger: Fills out
...Yes, use my FormsPlus::Tag and FormsPlus::Reorder helpers. Demo here: MktoForms2 :: Demo :: Override Field Order 1.0.2 You can hard-set the order of any fields, even including putting fields below the Submit button. See the examples in the JS pane.
There's a "$" missing in line #2. It needs to be:Good call, fixed.
Is there an easy way to determine which services are currently using the SOAP API? I am not clear on that from the articles shared on how to find that. Thanks!!Don’t think so. You could change the encryption key and see what breaks! Nobody with a well-kept-up integration would be using SOAP, which m...
Simple. It’s because the $lead.FirstName property is an empty String when you’re approving the asset. There’s no lead context at that point. And String offsets > 0 on an empty string throw fatal errors. So you need to check if it’s empty first (a good idea in any case).#set( $firstName = $lead.First...