Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hi allWhat is the easiest way in Marketo to determine the location of a user at time of open? For example, you could use a user's location at open to show them the weather forecast in that location.I know some third party services can do this but would prefer to do it in house.Thanks, Phil
Wow, that's great Sanford Whiteman! Although I do agree with you - a drag and drop would be ideal, but it doesn't seem to be on the horizon for Marketo In the meantime, this solution is great! Thank you.Phil
They shouldn't be allowed to enter the same number for multiple countries.Storage - not too bothered. I guess as one ordered array, but whatever does is easier to implement on the front end.
Hi SanfordIdeally it would be something like this - although the UX could vary:Rank the below countries from 1-6, with 1 being the product you are most interested in, and 6 being the product you are least interested in:* Belize (field next to this which could hold the number 1-6)* Vietnam (same as a...
If I would like a customer to rank their preferences in order from 1-5, then can I force the ranking within Marketo's form functionality? For example, listing products in order of preference from 1-5, with no repetition.If it's possible, it's not obvious to me. Any help would be great!Thanks, Phil
Thanks Sanford! That's working perfectly.Here's my updated code:POST to URL: (our endpoint)/rest/v1/leads/push.json?access_token=(token) { "input": [ { "id": "(insert ID here)", "(field name to update)": "(value for field)" } ], "programName": "(program name)", "...
Hi guysI'm really struggling to write to a Marketo custom field using the "Push Lead to Marketo" REST API endpoint here: http://developers.marketo.com/rest-api/endpoint-reference/lead-database-endpoint-reference/#!/Leads/pushToMarketoUsingPO… I'm using Postman for the request, with this format:POST ...
Sanford Whiteman here's the sort functionality I was struggling with last year! Now sort is supported, this become much easier.
Sanford Whiteman has solved it! Basically, I was loading the form twice on the page - once through the Marketo editor in a guided landing page, and once more in the Javascript in the template itself. Which was making multiple form submissions! Once I removed the redundant loadForm line, it worked l...
Further update: best practice seems to be to define the width and height you want, but not to use "px". If you use "px", Outlook will show the image at full size.So use width="300" instead of width="300px".