Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
@Jeff S The Thank You page can go anywhere you want using the 'External URL' option. Also, the Forms 2.0 API allows you to redirect the user anywhere you want using the onSuccess handler. You can definitely preserve your business unit branding.
@Carolyn D In addition to @Max S's points, if this is a common need, you can include that supplementary link in emails to your partners with the special mktNoTok class as well as a parameter like @Max suggests like "&partner=
@Dan - Yeah, my bad, the numeric web page ID needs to be translated to a URL via Munchkin in order for that to be in a trigger. But I believe you can use the web page ID (like 16542) without Munchkin having touched the page.
I'd do any followup calls in the onSuccess handler because that way you are logging a successful form post, rather than just an attempted one as in onSubmit (not that failure is common, but it's the proper way).
@Chris, like @Josh says this is something to build in JS using the Forms 2.0 API... something like this demo I just put together. (Maybe to add to the Forms 2.0 Cookbook I'm working on to compile similar crazy stuff I've done lately.)This example uses dependency rules stored as JSON -- the rules are...
@James G Simple stuff: form.onSubmit(function(form){ form.vals({ My_Checkbox__c : ( 'yes' == form.vals().My_Checkbox__c ? 'no' : 'yes' ) }); });Demo here.
Munchkin won't affect the FoF activity. What do you see in the Activity Log for a lead who fills it out?
Still doable. Create two fields `DownloadEligibilityStartDate` and `DownloadAttemptOffsetDays`.Set the `Eligibility` in a flow step when somebody is sent the email.When they hit the form, set the `Offset` to the days between now and `Elig'ty`. Use Advanced Thank You to send them to the Download pag...
@Greg L that's interesting that it passed your internal audit (because it probably wouldn't pass ours!). Would you mind contacting me (sandy@figureone.com) and maybe we could talk for a second about your rules/regs?
I wouldn't say it needs any code. Just an Inferred Country-based Segmentation that finds if a lead matches one of your Allowed Inferred Country values. Then the Landing Page either displays the download link or not.This will not stop malicious users from hitting the direct link to the asset if they...