diff --git a/journals/templates/journals/metadata_xml_deposit.html b/journals/templates/journals/metadata_xml_deposit.html
index 645cba7c0b3d86dd2356e729ce5f22c62bcc7956..e8fbc3a40e48695ecd2cc9a47be694f8773709c4 100644
--- a/journals/templates/journals/metadata_xml_deposit.html
+++ b/journals/templates/journals/metadata_xml_deposit.html
@@ -22,7 +22,7 @@
   <h3>Response text:</h3>
   <p>{{ response_text|linebreaks }}</p>
 
-  <h3><a href="{{publication.get_absolute_url}}">return to the publication's page</a> or to the <a href="{% url 'journals:manage_metadata' %}">metadata management page</a></h3>
+  <h3><a href="{{publication.get_absolute_url}}">return to the publication's page</a>, to the <a href="{% url 'journals:manage_metadata' %}">general metadata management page</a> or to <a href="{% url 'journals:manage_metadata' doi_label=publication.doi_label %}">this publication's metadata management page</a></h3>
 
 </section>
 
diff --git a/journals/views.py b/journals/views.py
index 8e51f7cb1c75f1970c297b8cfd9db39844d2304f..111eaa5939d11a898de39f8a063dfbd9725b451a 100644
--- a/journals/views.py
+++ b/journals/views.py
@@ -588,11 +588,13 @@ def create_metadata_xml(request, doi_label):
         '<crossmark_domain><domain>scipost.org</domain></crossmark_domain>\n'
         '</crossmark_domains>\n'
         '<crossmark_domain_exclusive>false</crossmark_domain_exclusive>\n'
-        '<custom_metadata>\n'
         )
     funders = (Funder.objects.filter(grant__in=publication.grants.all())
                | publication.funders_generic.all()).distinct()
     nr_funders = funders.count()
+    need_custom_metadata = nr_funders > 0 # JSC: more conditions to follow later
+    if need_custom_metadata:
+        initial['metadata_xml'] += '<custom_metadata>\n'
     if nr_funders > 0:
         initial['metadata_xml'] += '<fr:program name="fundref">\n'
         for funder in funders:
@@ -611,9 +613,9 @@ def create_metadata_xml(request, doi_label):
             if nr_funders > 1:
                 initial['metadata_xml'] += '</fr:assertion>\n'
         initial['metadata_xml'] += '</fr:program>\n'
-
+    if need_custom_metadata:
+        initial['metadata_xml'] += '</custom_metadata>\n'
     initial['metadata_xml'] += (
-        '</custom_metadata>\n'
         '</crossmark>\n'
         '<archive_locations><archive name="CLOCKSS"></archive></archive_locations>\n'
         '<doi_data>\n'