Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enotice fix #21732

Merged
merged 1 commit into from
Oct 5, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions templates/CRM/Contribute/Form/Contribution.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
{if $contributionMode && $processorSupportsFutureStartDate}
<tr id='start_date' class="crm-contribution-form-block-receive_date">
<td class="label">{ts}Start Date{/ts}</td>
<td {$valueStyle}>{if $hideCalender neq true}{$form.receive_date.html}{/if}<br />
<td {$valueStyle}>{$form.receive_date.html}<br />
<span class="description">{ts}You can set a start date for recurring contributions and the first payment will be on that date. For a single post-dated contribution you must select recurring and choose one installment{/ts}</span>
</td>
</tr>
Expand Down Expand Up @@ -165,11 +165,7 @@
<tr id="cancelDate" class="crm-contribution-form-block-cancel_date">
<td class="label">{$form.cancel_date.label}</td>
<td>
{if $hideCalendar neq true}
{$form.cancel_date.html}
{else}
{$form.cancel_date.value|crmDate}
{/if}
{$form.cancel_date.html}
</td>
</tr>
<tr id="cancelDescription" class="crm-contribution-form-block-cancel_reason">
Expand Down