From 4e6258a7b4171f3db582db272a6231ecb3376eaf Mon Sep 17 00:00:00 2001 From: Justin Freeman Date: Fri, 29 Apr 2022 12:06:02 +1000 Subject: [PATCH] CIVIUX-153 On the website front-end, CiviCRM page heading should start from h2 and not h1 --- templates/CRM/common/CMSPrint.tpl | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/templates/CRM/common/CMSPrint.tpl b/templates/CRM/common/CMSPrint.tpl index c0579b38aa..0c20dfef54 100644 --- a/templates/CRM/common/CMSPrint.tpl +++ b/templates/CRM/common/CMSPrint.tpl @@ -24,10 +24,19 @@ {/if} -{if $pageTitle} -
-

{if $isDeleted}{/if}{$pageTitle}{if $isDeleted}{/if}

-
+{if $urlIsPublic} + {if $pageTitle} +
+

{$pageTitle}

+
+ {/if} +{else} + {if $pageTitle} +
+

{if $isDeleted} + {/if}{$pageTitle}{if $isDeleted}{/if}

+
+ {/if} {/if} {crmRegion name='page-header'} -- 2.25.1