Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
I agree that some interpretations come bizarrely close to "Information wants to be free" from the radical open-source movement. Strange to hear it echoed in the totally commercial realm, albeit unintentionally.When you look at the breadth of contract law, there is a contract being entered into when...
You've seen before that the Forms 2.0 input mask plugin can be tweaked to do some more elegant stuff.Here are a few more things you might want to do. I only recommend masks for things that have an explicit standard (like phone numbers, credit cards, etc.). But if you're going to use them for more th...
#foreach( $Store in $OrderData_cList )#if( $Store.Date.equals($yesterday) )Load this table#else#endAssuming $yesterday and $Store.Date are both Strings at the time of comparison.If you have another Q could you post it to Products (and link back to this post)? It's impossible to highlight code here...
Boolean type fields enjoy a strange place in Marketo's Velocity implementation.On the Marketo UI side and via most Marketo APIs, Booleans hold consistent true/false values (presumably using SQL bit type fields under the hood).But in Velocity, as I've explored before, a Boolean field on the Lead/Pers...
We actually have a developer and capacity to implement, just need more clear understanding. Do you by chance have a link to documentation / explanation of how such solution works? Well, cross-frame communication should already be understood by a developer with the requisite experience... there isn't...
The only way to associate these leads across domains is to use custom JavaScript for cross-domain communication, which is complex to manage correctly (it is something you should hire a professional developer for).Or, of course, you can stop using IFRAMEs and move to embedded forms. Why are these IFR...
We want to find an alternative solution for looking at user activity, if such exists.You can do a background form post (which, confusingly, has much the same effect as associateLead).
Velocity is the only language where Brevity for Brevity's Sake is OK. In other languages, reducing total lines of code (LOC) with show-offy shortcuts just means your code will make no sense (to you or anyone else) after a few months away. But in Velocity, the shortest possible implementati...
The only to safely use associateLead is if the person has already proven their identity by authenticating to another system.For example, if somebody logs into your e-commerce system using a confirmed email address and password, then you can pass the session ID (say a PHP or Java session cookie) to a...
Are you sure that's your real key, with the "-KEY" at the end? (You also should've redacted that string on the Community, since it's a secret key, and I recommend you generate a new one in the Google reCAPTCHA console.)