diff --git a/common/djangoapps/student/migrations/0037_linkedinaddtoprofileconfiguration_updates.py b/common/djangoapps/student/migrations/0037_linkedinaddtoprofileconfiguration_updates.py
new file mode 100644
index 0000000000000000000000000000000000000000..4ab9aa69a052cfd3f109a39ea895990bc51b9dcd
--- /dev/null
+++ b/common/djangoapps/student/migrations/0037_linkedinaddtoprofileconfiguration_updates.py
@@ -0,0 +1,26 @@
+# Generated by Django 2.2.16 on 2020-10-09 19:50
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('student', '0036_userpasswordtogglehistory'),
+    ]
+
+    operations = [
+        migrations.RemoveField(
+            model_name='linkedinaddtoprofileconfiguration',
+            name='dashboard_tracking_code',
+        ),
+        migrations.RemoveField(
+            model_name='linkedinaddtoprofileconfiguration',
+            name='trk_partner_name',
+        ),
+        migrations.AlterField(
+            model_name='linkedinaddtoprofileconfiguration',
+            name='company_identifier',
+            field=models.TextField(blank=True, help_text='Your organization ID (if your organization has an existing page on LinkedIn) e.g 1337. If not provided, will default to sending Platform Name (e.g. edX) instead.'),
+        ),
+    ]
diff --git a/common/djangoapps/student/models.py b/common/djangoapps/student/models.py
index 7b7f5e74fae58b99e81b99c22cb7bb119d4b0e85..4390073344a28bc53b6f4b876c0e8c446c29814c 100644
--- a/common/djangoapps/student/models.py
+++ b/common/djangoapps/student/models.py
@@ -2545,24 +2545,11 @@ class LinkedInAddToProfileConfiguration(ConfigurationModel):
     }
 
     company_identifier = models.TextField(
-        help_text=_(
-            u"The company identifier for the LinkedIn Add-to-Profile button "
-            u"e.g 0_0dPSPyS070e0HsE9HNz_13_d11_"
-        )
-    )
-
-    # Deprecated
-    dashboard_tracking_code = models.TextField(default=u"", blank=True)
-
-    trk_partner_name = models.CharField(
-        max_length=10,
-        default="",
         blank=True,
         help_text=_(
-            u"Short identifier for the LinkedIn partner used in the tracking code.  "
-            u"(Example: 'edx')  "
-            u"If no value is provided, tracking codes will not be sent to LinkedIn."
-        )
+            'Your organization ID (if your organization has an existing page on LinkedIn) e.g 1337. '
+            'If not provided, will default to sending Platform Name (e.g. edX) instead.'
+        ),
     )
 
     def is_enabled(self, *key_fields):
diff --git a/common/test/db_fixtures/certificates_web_view.json b/common/test/db_fixtures/certificates_web_view.json
index ae21fa3e64ce58155154647d90751c003b1ff6b4..8f8e2449322d8e2769376834e018f2d202934d4c 100644
--- a/common/test/db_fixtures/certificates_web_view.json
+++ b/common/test/db_fixtures/certificates_web_view.json
@@ -106,9 +106,7 @@
       "change_date": "2050-06-15 11:02:13.007790+00:00",
       "changed_by": 99,
       "enabled": true,
-      "dashboard_tracking_code": "edx-course-v1&TESTCOURSE",
-      "company_identifier": "7nTFLiuDkkQkdELSpruCwD4F6jzqtTFsx3PfJUIT2qHqXRLG1",
-      "trk_partner_name": "edx"
+      "company_identifier": 1337
     }
   },
   {
diff --git a/lms/envs/common.py b/lms/envs/common.py
index 19b4a9548b428583cd25d68342996e3fbdc5dd3e..978a4728d81395ce0d9dc7f4712ab09b121e57b0 100644
--- a/lms/envs/common.py
+++ b/lms/envs/common.py
@@ -2754,6 +2754,7 @@ MKTG_URL_LINK_MAP = {
     'ROOT': 'root',
     'TOS': 'tos',
     'HONOR': 'honor',  # If your site does not have an honor code, simply delete this line.
+    'TOS_AND_HONOR': 'edx-terms-service',
     'PRIVACY': 'privacy',
     'PRESS': 'press',
     'BLOG': 'blog',