diff --git a/journals/templates/journals/base.html b/journals/templates/journals/base.html
index 8d23b4f2c45466381f86711fd768257b13d10a15..6e42122c7c0767a01347cd5ac20d65f4c5070f91 100644
--- a/journals/templates/journals/base.html
+++ b/journals/templates/journals/base.html
@@ -54,16 +54,9 @@
 	    {{ journal.name }} has been awarded the DOAJ Seal <img src="{% static 'scipost/images/DOAJ_Seal_logo_big.png' %}" alt="DOAJ Seal" width="40"> from the <a href="https://doaj.org">Directory of Open Access Journals</a>.
 	  </p>
 	{% endif %}
-	{% if journal.doi_label == 'SciPostPhys' %}
-	  <p>
-	    All content in {{ journal }} is deposited and permanently preserved in the CLOCKSS archive <a href="https://www.clockss.org/clockss/Home" target="_blank"><img src="{% static 'scipost/images/clockss_original_logo_boxed_ai-cropped-90.png' %}" alt="CLOCKSS logo" width="40"></a>
-	  </p>
-    	  <p class="mb-1">
-	    Self-computed impact factor
-	    <small><sup><i class="fa fa-question-circle" data-toggle="tooltip" data-html="true" title="Number of citations in year N for papers published in years N-1 and N-2,<br/>divided by the number of papers in those years.<br/>Data obtained from Crossref's Cited-by service"></i></sup></small> for 2018		  (using <a href="https://www.crossref.org/services/cited-by/" target="_blank">Crossref Cited-by</a> data)
-	    : <strong>5.25</strong>
-	  </p>
-	{% endif %}
+	<p>
+	  All content in {{ journal }} is deposited and permanently preserved in the CLOCKSS archive <a href="https://www.clockss.org/clockss/Home" target="_blank"><img src="{% static 'scipost/images/clockss_original_logo_boxed_ai-cropped-90.png' %}" alt="CLOCKSS logo" width="40"></a>
+	</p>
       </div>
     </div>
   </footer>
diff --git a/submissions/constants.py b/submissions/constants.py
index d5f22cfaed2ba451344d29de1897a314a71118b5..8ccd3638d22f999a07b6d46ad7713192f1b03990 100644
--- a/submissions/constants.py
+++ b/submissions/constants.py
@@ -129,6 +129,7 @@ RANKING_CHOICES = (
 REPORT_PUBLISH_1, REPORT_PUBLISH_2, REPORT_PUBLISH_3 = 1, 2, 3
 REPORT_MINOR_REV, REPORT_MAJOR_REV = -1, -2
 REPORT_REJECT = -3
+REPORT_ALT_JOURNAL = -4
 REPORT_REC = (
     (None, '-'),
     (REPORT_PUBLISH_1, 'Publish (surpasses expectations and criteria for this Journal; among top 10%)'),
@@ -136,6 +137,7 @@ REPORT_REC = (
     (REPORT_PUBLISH_3, 'Publish (meets expectations and criteria for this Journal)'),
     (REPORT_MINOR_REV, 'Ask for minor revision'),
     (REPORT_MAJOR_REV, 'Ask for major revision'),
+    (REPORT_ALT_JOURNAL, 'Accept in alternative Journal (see Report)'),
     (REPORT_REJECT, 'Reject')
 )
 
diff --git a/submissions/forms.py b/submissions/forms.py
index bb4bf42a64084f3bdb37c026c66fb697f9f3c498..bd8f693738d4041b9639ae569a60e02370c5fd47 100644
--- a/submissions/forms.py
+++ b/submissions/forms.py
@@ -1094,7 +1094,7 @@ class ReportForm(forms.ModelForm):
             'rows': 10,
             'cols': 100
         })
-        self.fields['report'].widget.attrs.update({'placeholder': 'Your general remarks',
+        self.fields['report'].widget.attrs.update({'placeholder': 'Your general remarks. Are this Journal\'s acceptance criteria met? Would you recommend publication in another Journal instead?',
                                                    'rows': 10, 'cols': 100})
         self.fields['requested_changes'].widget.attrs.update({
             'placeholder': 'Give a numbered (1-, 2-, ...) list of specifically requested changes',
diff --git a/submissions/migrations/0083_auto_20200627_1944.py b/submissions/migrations/0083_auto_20200627_1944.py
new file mode 100644
index 0000000000000000000000000000000000000000..1267101e5fc7863bacbf74fcda1cbbc82484f6bc
--- /dev/null
+++ b/submissions/migrations/0083_auto_20200627_1944.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.2.11 on 2020-06-27 17:44
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('submissions', '0082_auto_20200612_0805'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='report',
+            name='recommendation',
+            field=models.SmallIntegerField(blank=True, choices=[(None, '-'), (1, 'Publish (surpasses expectations and criteria for this Journal; among top 10%)'), (2, 'Publish (easily meets expectations and criteria for this Journal; among top 50%)'), (3, 'Publish (meets expectations and criteria for this Journal)'), (-1, 'Ask for minor revision'), (-2, 'Ask for major revision'), (-4, 'Accept in alternative Journal (see Report)'), (-3, 'Reject')], null=True),
+        ),
+    ]
diff --git a/submissions/templates/partials/submissions/recommendation_fellow_content.html b/submissions/templates/partials/submissions/recommendation_fellow_content.html
index 1c88466860ab7771e2aaa1b8a01df582d0e54892..22158f73a4617d70ec5ba4058b9410fdae2e3c95 100644
--- a/submissions/templates/partials/submissions/recommendation_fellow_content.html
+++ b/submissions/templates/partials/submissions/recommendation_fellow_content.html
@@ -127,7 +127,7 @@
 	      {% endif %}
 	    </li>
             <li class="list-item my-2">
-	      {% if not recommendation.submission.editorial_decision.is_fixed_and_accepted %}
+	      {% if not recommendation.submission.editorial_decision %}
 		<a class="btn btn-primary" href="{% url 'submissions:editorial_decision_create' recommendation.submission.preprint.identifier_w_vn_nr %}" role="button">Initiate the process to fix the editorial decision</a>
 	      {% else %}
 		<a class="btn btn-primary" href="{% url 'submissions:editorial_decision_detail' recommendation.submission.preprint.identifier_w_vn_nr %}" role="button">View the editorial decision <small>(status: {{ recommendation.submission.editorial_decision.get_status_display }})</small></a>
diff --git a/submissions/templates/partials/submissions/submission_summary.html b/submissions/templates/partials/submissions/submission_summary.html
index 2671907169a25a5f21c83a01fd3d20ce1f03d24d..4ff38f03052a7d935fc7ea6f5fc67fbaf228b75d 100644
--- a/submissions/templates/partials/submissions/submission_summary.html
+++ b/submissions/templates/partials/submissions/submission_summary.html
@@ -19,11 +19,11 @@
       {% endfor %}
     </td>
   </tr>
-  {% if submission.preprint.url %}
+  {% if "arxiv.org" in submission.preprint.url %}
     <tr>
       <td>Arxiv Link:</td>
       <td>
-        <a href="{{ submission.preprint.url }}" target="_blank">{{ submission.preprint.url }}</a>
+        <a href="{{ submission.preprint.url }}" target="_blank">{{ submission.preprint.url }}</a>&emsp;(<a href="{{ submission.preprint.url }}/pdf" target="_blank">pdf</a>)
       </td>
     </tr>
   {% elif submission.preprint.get_absolute_url %}
diff --git a/submissions/templates/submissions/report_form.html b/submissions/templates/submissions/report_form.html
index 7ea5cd6ad19fe336307a1cc14d0d7acd71556994..815dd3e84169966addeda0caea7d48121d6ddef2 100644
--- a/submissions/templates/submissions/report_form.html
+++ b/submissions/templates/submissions/report_form.html
@@ -34,6 +34,30 @@
             <h2>Your {% if form.instance.is_followup_report %}followup {% endif %}report:</h2>
             <p>A preview of text areas will appear below as you type (you can use $\LaTeX$ \$...\$ for in-text equations or \ [ ... \ ] for on-line equations).</p>
 	    <p>Before you get started, please make sure you are familiar with our <a href="https://scipost.org{% url 'submissions:referee_guidelines' %}" target="_blank">referee guidelines</a>, <a href="https://scipost.org{% url 'submissions:sub_and_ref_procedure' %}" target="_blank">refereeing procedure</a> and <a href="{% url 'journals:journals_terms_and_conditions' %}#referee_code_of_conduct" target="_blank">referee code of conduct</a>.</p>
+
+	    <div class="card border-danger mx-1 mt-2 mb-4">
+	      <div class="card-header text-white bg-danger">
+		<h2 class="mb-0">Important!</h2>
+	      </div>
+	      <div class="card-body pb-1">
+		<ul>
+		  <li>This manuscript was submitted to <strong>{{ submission.submitted_to }}</strong>. Please make sure that you refer to this journal's <a href="{% url 'journal:about' doi_label=submission.submitted_to.doi_label %}#criteria" target="_blank"><strong>acceptance criteria</strong></a> in your evaluation.</li>
+		  <li>If you feel the article would be more appropriately published in one of our <a href="{% url 'journals:journals' discipline=submission.discipline %}" target="_blank"><strong>other {{ submission.get_discipline_display }} Journals</strong></a>, please
+		    <ul>
+		      <li>select <em>Accept in alternative Journal</em> in the <strong>Recommendation</strong> field</li>
+		      <li>in the <strong>Report</strong> field, specify the alternative Journal in which you would recommend acceptance
+			<br>
+			<ul class="list-unstyled">
+			  <li><strong>example 1</strong>: <em>This submission transcends the criteria of [Journal 1] and meets those of [Journal A], it should be published in the latter</em></li>
+			  <li><strong>example 2</strong>: <em>This submission does not meet the criteria of [Journal A], but does meet those of [Journal 1], where it could be published.</em></li>
+			</ul>
+		      </li>
+		    </ul>
+		  </li>
+		</ul>
+	      </div>
+	    </div>
+
 	    <div class="mb-0">
 	      <table class="table">
 		<tr>