Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
All,with @SanfordWhiteman 's help we found a cunning answer. If you can't get the chrome devtools to surface the code, then put this line of codedebugger;where you want to debug in your Landing Page Template. It'll force the chrome devtools to bring this code into view. From then you can apply ot...
I hunted down through the iframes and still couldn't see what I was looking for.I'm happy to screen share with you if you have time.
@SanfordWhiteman , its a template URL so I'm not sure I can expose it to you?
As an alternative approach to @Chris_Wilcox 's product example above, I often create tokens long these lines:#if($lead.products_of_interest.contains("A")) #set( $storyHidden = false )#else #end Drop your product of interest token before a series of Marketo Modules, and then drop in the second tok...
Will,Along with Sanfords comments on reviewing the HTML fragments, I'd go further and say there is a very strong argument to be made that you should really look at how you are crafting your emails. If you had a Marketo template built that covered your base formatting/branding etc this would be craft...
All,I have a situation where I have some JS written directly into a Landing Page Template. I want to debug said JS. I'm using Chrome for this. When I hit F12 and go to sources, I can't find the LPT code anywhere. I did a 'search all files' and typed in a variable name I know exists in the code, ...
Harish,thanks for clarifying. I think though the best way to help is with worked example (as what @SanfordWhiteman often does).In my case, I'm not that clever - but when I do get an outcome with the help of others (usually Sanford) then I try to post back the full worked example as a guide to other...
@Harish_Gupta6 wrote:You need to write a JS script and add onblur events on all fields and then create a function to check if all fields have been filled or not. Call this function on each field onblur event and validate the field. If all fields have the data then change the color of your button. Le...
@SanfordWhiteman ,gotcha. I presume the easiest way to do this is to wrap all the code after this#set( $currentSeminarList = $lead.metlifecompetitiondatas2 )with this#if( $currentSeminarList != "" ) All the doing code #endIt seems to behave, but is that the best practice approach?