Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Thank you @SanfordWhiteman 🙂I had seen some similar posts but I had removed tracking and was still having trouble which I realize I should have added to my original post. I was also trying to avoid having to write a lengthy velocity script but I'll do a test and I will adjust my velocity to incorpo...
Hello, I'm not sure if I posted this in the right discussion forum but I am looking to use a velocity token in my CTA urls to append UTMs. The issue I am facing is the mkt_tok value appending prior to the token values and then the entire velocity script appends at the end. The reason behind using th...
Hi @SanfordWhiteman, I am trying to apply the script example to my page but am getting stuck with the FormsPlus piece of the script, the error is that it is not defined. What would I update this to be?MktoForms2.whenRendered(function(form) { var formEl = form.getFormElem()[0], submitButtonRow = for...
Apologies, I'm still new to writing script.If I wanted to make my form picklist values dynamic via javascript what would that look like?We built one that does it for all the field labels and submit button, however it's not picking up the div id tags on our rich text fields, and I also haven't been...
can you use velocity script tokens to accomplish displaying different language values? I set the program language value using a velocity script token that says #set($ProgramLanguage="french") for example, that token is then referenced in another VS script that looks like this: #if (${ProgramLanguag...
We are switching to using global forms but need for them to be localized per program so we had thought this would be a helpful way to do so with the program token indicating the language for the program. We've added to to indicate the language choice.I am trying to figure out how to get the picklis...
function unchecked() { var opt = document.getElementById("Opt_In__c"); opt.checked = false; var check = opt.parentElement.parentElement.parentElement.parentElement; check.style.display = "block"; var text = document.getElementById("optin text").parentElement.parentElement .parentElement...
Hi @SanfordWhiteman, I am trying to use picklist values (option value) in our code that we are developing to translate form fields via a program token, it works great for form fields, however I'm unsure of the setup for the picklist values and div ids for the rich text portions.An important thing to...