✕
Skip to content
Salesforce Ben
  • Events
  • Career
  • AppAssessor
  • News
  • Articles by Role
    • Admins
    • DevOps
    • Developers
    • Marketers
    • Consultants
    • Architects
    • Business Analysts
  • Where to Start
  • Salesforce Certification List
  • How to Get Certified
  • Free Salesforce Practice Exams
    • Admin Practice Exam
    • Platform App Builder Practice Exam
    • Platform Developer 1 Practice Exam
  • How to Get a Job in Salesforce

Find us on:

  • user
    • Courses Login
Salesforce Ben
  • Events
  • Career
  • AppAssessor
  • News
  • Articles by Role

      Articles by role:

    • Admins
    • DevOps
    • Developers
    • Marketers
    • Consultants
    • Architects
    • Business Analysts
    • Featured

      Salesforce Certification Pathways 2024 [Infographic]

      By Lucy Mazalon

      January 15, 2024
      The Ultimate Guide to Every Salesforce Product in 2023 [Infographic]

      By Ben McCarthy

      July 24, 2023
  • Courses
  • user
    • Courses Login
  • Events
  • Career
  • AppAssessor
  • News
  • Articles by Role

      Articles by role:

    • Admins
    • DevOps
    • Developers
    • Marketers
    • Consultants
    • Architects
    • Business Analysts
    • Featured

      Salesforce Certification Pathways 2024 [Infographic]

      By Lucy Mazalon

      January 15, 2024
      The Ultimate Guide to Every Salesforce Product in 2023 [Infographic]

      By Ben McCarthy

      July 24, 2023

What’s trending

Static Flow Analysis: How to Run Static Code Analysis for Flows
The Ultimate Guide to Every Salesforce Product in 2023 [Infographic]
Salesforce Flow Data Table: Standard vs. Custom
Finding Your Integration Solution for Salesforce: Best Practices
5 Salesforce Mobile UI Best Practices

UPCOMING EVENTS

No events found

See more
Share
Marketers / Account Engagement (Pardot)

How to Change the ”Not You?” Link Text on Pardot Forms

By Lucy Mazalon

September 11, 2017

Have you ever been forwarded a link to a form and it displays another person’s information? This can happen when an email with a link to a form is forwarded, or you share devices.

That’s where the ‘Not You’ link comes in. When the “Include “Not you?” link” Pardot form setting is enabled, a small link will appear under the email field. When a prospect clicks this, Pardot clears the data on the form so that the prospect can enter their own information.

Enabling this setting is best practice, otherwise, we will see the wrong data stored on the wrong records in Pardot.
This guide will cover how to add the ‘Not You?’ link to Pardot forms and show you how to translate it, too.

READ MORE: Pardot Forms: 12 Things You Should Know

Add the ‘Not You?’ Link to Pardot Forms

  1. Go to the “Look and feel” step, and go to the Advanced tab.
  2. Check the “Include “Not you?” link to allow visitors to reset the form” setting.

Now, prospects will have the opportunity to change who is being tracked on their IP address. When a prospect submits a form their visitor records (i.e. browsing activity) are associated with their prospect record. This means you can relate their past and future browsing data on one record as they transfer from being unknown, to known. It’s important that the tracked activity for that IP is related to the correct prospect record.

Edit the ‘Not You?’ Link on Pardot Forms

Editing this small piece of text isn’t as straightforward as the rest of the form.

I first came across this requirement when an organization wanted forms in different languages. It’s a jarring user experience if the form is translated into one language, while this text remains in English.

READ MORE: 4 Tips for Managing Multiple Languages in Pardot

All text can be modified on Pardot forms, at the form level, via the Form Wizard. You’ll be familiar with the ability to edit:

  • Form field labels.
  • Field description.
  • Error message.
  • Submit button text
  • Above and below form content.

Except “[prospect email] “Not you?” Click Here”

You need to take a different route and make the change at the form template level.

  1. Open the form layout template your form is using. This is linked on the form summary page. Make a copy of the layout text so you don’t mess with any live forms.
  2. Take the Javascript code (found at the bottom of this guide) and paste it into a word doc.
  3. Replace two parts of the code with your translations, as shown below in yellow highlight.

4. On the form layout template edit screen, paste the Javascript in between‘’ and ‘’ and save.

While this is a tedious exercise, create a layout template for each language. If you have some knowledge of CSS/HTML, you can seize the opportunity to resize your submit buttons (because they vary from language to language).

Finally, here’s the code:

<script type="text/javascript" src="/js/jquery/jquery.min.js"></script>

<script type="text/javascript">

  $(document).ready(function(){

    var span = $('.email span.description').first();

    span.html(span.html().replace("Not","Vous n’êtes pas"));

    span.html(span.html().replace("Click Here","Cliquez-ici"));

  });

</script>

The Author

Lucy Mazalon

Lucy is the Operations Director at Salesforce Ben. She is a 10x certified Marketing Champion and founder of The DRIP.

More like this:

Marketers

Marketing Associate Certification Guide & Tips

By Lucy Mazalon

February 06, 2024
Marketers

Salesforce Connections: The Event for Salesforce Marketers

By Lucy Mazalon

February 06, 2024
Marketers

2024 Predictions from Salesforce Marketing Champions

By Lucy Mazalon

January 30, 2024

Leave a Reply Cancel reply

Comments:

    Maxime
    July 22, 2019 11:32 am
    Thank you for the tip Lucy! Unfortunately something seems to go wrong on my side when using the code you provided: when adding the code, the characters in the form don't use UTF-8 encoding anymore so the form gets messy. I tried to trouble shoot it but so far I can't find the fix. Here is an example : https://info.2020spaces.com/ebook-developper-son-entreprise-de-design-d-interieur Also here is a recommendation for your translation to french :) span.html(span.html().replace("Not","Vous n'êtes pas")); span.html(span.html().replace("Click Here","Cliquez-ici")); Thank You Max
    Reply
    Lucy Mazalon
    July 28, 2019 5:30 pm
    Hi Max, Thanks for your comment - sorry that this was throwing an error for you, it worked ok for me. I will get a developer to take a look and see how this could be resolved. Ah French, a romance language that isn't as raw as English :). Best wishes, Lucy
    Reply
    Irene De diaz
    May 14, 2021 1:10 am
    Hi! I really find your tips very helpful. I was using this code and so far it was great but since a week ago or something, it is not making the translation. i have it even saved as spanish templates but even on those ones is not translating...do you know what may be the problem?
    Reply
    Theo Pavlich
    June 23, 2021 8:58 pm
    Did something change within Pardot that broke this patch? It's no longer working for me.
    Reply
    Kim Phillips
    September 21, 2021 8:30 pm
    Same here, just tried it and no luck. In our case I just want to change the words "Click Here" to "Reset Form" but instructions here did not work.
    Reply
    Jackson
    July 22, 2022 1:30 am
    Hi, do you know how to change this text to appear under the message button or in any other location?
    Reply
    Lucy Mazalon
    August 03, 2022 2:06 pm
    Hi Jackson, I don't believe that's possible.
    Reply
    Richard Samme
    September 20, 2022 5:02 pm
    Does anyone know how to change the text colour? our template background is white and you cant read or see the text as they are the same colour
    Reply

Newsletter:


    Find us on:

    Salesforce Ben

    Salesforce Ben
    Third Floor Library Building
    Sun Street
    Tewkesbury
    Gloucestershire
    United Kingdom
    GL20 5NX

    • Where to Start
    • Salesforce Certification List
    • How to Get Certified
    • Free Salesforce Practice Exams
      • Admin Practice Exam
      • Platform App Builder Practice Exam
      • Platform Developer 1 Practice Exam
    • How to Get a Job in Salesforce
    • Events
    • Career
    • AppAssessor
    • News
    • Articles by Role
    • Admins
    • DevOps
    • Developers
    • Marketers
    • Consultants
    • Architects
    • Business Analysts
    • About Us
    • Contact Us
    • Write For Us
    • Influencer Program
    • Advertise With Us
    • Pledge 1%
    • Privacy Policy

    © 2014-2025 SalesforceBen.com