From 693ae76967cd8bda26d1e4e600738df95641ac81 Mon Sep 17 00:00:00 2001 From: larssandergreen Date: Fri, 12 May 2023 15:08:40 -0600 Subject: [PATCH] Don't show send confirmation description if registering multiple --- templates/CRM/Event/Form/EventFees.tpl | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/templates/CRM/Event/Form/EventFees.tpl b/templates/CRM/Event/Form/EventFees.tpl index a82fa8b2f4..e207017ffc 100644 --- a/templates/CRM/Event/Form/EventFees.tpl +++ b/templates/CRM/Event/Form/EventFees.tpl @@ -97,10 +97,12 @@ {if $paid}{ts}Send Confirmation and Receipt{/ts}{else}{ts}Send Confirmation{/ts}{/if} {$form.send_receipt.html}
- {if $paid} - {ts 1=$email}Automatically email a confirmation and receipt to %1?{/ts} - {else} - {ts 1=$email}Automatically email a confirmation to %1?{/ts} + {if $email} + {if $paid} + {ts 1=$email}Automatically email a confirmation and receipt to %1?{/ts} + {else} + {ts 1=$email}Automatically email a confirmation to %1?{/ts} + {/if} {/if} -- 2.25.1