Skip to content

Commit e05cd1d

Browse files
authored
Merge pull request #262 from grablair/fix/semantic-changes
2 parents 791dbde + f2ce929 commit e05cd1d

8 files changed

Lines changed: 12 additions & 15 deletions

File tree

backend/resources/views/emails/orders/attendee-ticket.blade.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@
2121
{{ __('If you have any questions or need assistance, please reply to this email or contact the event organizer') }}
2222
{{ __('at') }} <a href="mailto:{{$eventSettings->getSupportEmail()}}">{{$eventSettings->getSupportEmail()}}</a>.
2323

24-
{{ __('Best regards,') }}
25-
<br>
26-
{{config('app.name')}}
24+
{{ __('Best regards,') }}<br>
25+
{{ config('app.name') }}
2726

2827
<script type="application/ld+json">
2928
{

backend/resources/views/emails/orders/order-cancelled.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
{{ __('If you have any questions or need assistance, please respond to this email.') }}
1818
<br><br>
1919
{{ __('Thank you') }},<br>
20-
{{config('app.name')}}
20+
{{ config('app.name') }}
2121

2222
{!! $eventSettings->getGetEmailFooterHtml() !!}
2323
</x-mail::message>

backend/resources/views/emails/orders/order-failed.blade.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
{{ __('If you have any questions or need assistance, feel free to reach out to our support team') }}
1818
{{ __('at') }} {{ $supportEmail ?? 'hello@hi.events' }}.
1919

20-
{{ __('Best regards') }},
21-
<br>
22-
{{config('app.name')}}
20+
{{ __('Best regards') }},<br>
21+
{{ config('app.name') }}
2322

2423
{!! $eventSettings->getGetEmailFooterHtml() !!}
2524
</x-mail::message>

backend/resources/views/emails/orders/order-refunded.blade.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010

1111
{{ __('You have received a refund of :refundAmount for the following event: :eventTitle.', ['refundAmount' => $refundAmount, 'eventTitle' => $event->getTitle()]) }}
1212

13-
{{ __('Thank you') }}
13+
{{ __('Thank you') }},<br>
14+
{{ config('app.name') }}
1415

1516
{!! $eventSettings->getGetEmailFooterHtml() !!}
1617
</x-mail::message>

backend/resources/views/emails/orders/payment-success-but-order-expired.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</x-mail::button>
2121

2222
{{ __('Best regards') }},<br>
23-
{{ __('Hi.Events') }}
23+
{{ config('app.name') }}
2424

2525
{!! $eventSettings->getGetEmailFooterHtml() !!}
2626
</x-mail::message>

backend/resources/views/emails/orders/summary.blade.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
- **{{ __('Prepare for the Event:') }}** {{ __('Make sure to note the event date, time, and location.') }}
3535
- **{{ __('Stay Updated:') }}** {{ __('Keep an eye on your email for any updates from the event organizer.') }}
3636

37-
{{ __('Best regards,') }}
38-
<br>
37+
{{ __('Best regards,') }}<br>
3938
{{ config('app.name') }}
4039
</x-mail::message>

backend/resources/views/vendor/mail/html/message.blade.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,8 @@
3636
{{-- You can find the full license text at: https://github.com/HiEventsDev/hi.events/blob/main/LICENSE --}}
3737
{{-- In accordance with Section 7(b) of the AGPL, we ask that you retain the "Powered by Hi.Events" notice. --}}
3838
{{-- If you wish to remove this notice, a commercial license is available at: https://hi.events/licensing --}}
39-
© {{ date('Y') }} <a title="Manage events and sell tickets online with Hi.Events"
40-
href="https://hi.events?utm_source=app-email-footer">Hi.Events</a> - Effortless
41-
Event Management
39+
40+
© {{ date('Y') }} {{ config('app.name') }} | Powered by <a title="Manage events and sell tickets online with Hi.Events" href="https://hi.events?utm_source=app-email-footer">Hi.Events</a>
4241
@endif
4342
</x-mail::footer>
4443
</x-slot:footer>

frontend/src/components/common/EventDocumentHead/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ interface EventDocumentHeadProps {
1010

1111
export const EventDocumentHead = ({event}: EventDocumentHeadProps) => {
1212
const eventSettings = event.settings;
13-
const title = (eventSettings?.seo_title ?? event.title) + ' | ' + `Hi.Events`;
13+
const title = (eventSettings?.seo_title ?? event.title) + ' | ' + event.organizer?.name;
1414
const description = eventSettings?.seo_description ?? event.description_preview;
1515
const keywords = eventSettings?.seo_keywords;
1616
const image = eventCoverImageUrl(event);

0 commit comments

Comments
 (0)