This commit is contained in:
Diatrex 2020-07-28 12:28:07 +03:00
commit 9ed1747411
4 changed files with 15 additions and 4 deletions

View File

@ -9,7 +9,7 @@ return [
'fields' => [
'navigation_title', 'navigation_action', 'date_fields', 'price_fields',
'breadcrumbs', 'ad_details', 'ad_details_tab', 'latest_and_view_all_btn',
'register_page_instruction_logo'
'register_page_instruction_logo', 'register_page_alert_link'
],
],
'template' => [

View File

@ -56,6 +56,12 @@ return [
"mode" => "upload",
]
],
'register_page_alert_link' => [
'type' => 'anomaly.field_type.url',
"config" => [
"default_value" => "/",
]
],
'style' => [
'type' => 'anomaly.field_type.editor',
],

View File

@ -31,6 +31,9 @@ return [
'register_page_instruction_logo' => [
'name' => 'Register Page Instruction Logo',
],
'register_page_alert_link' => [
'name' => 'Register Page Alert Link',
],
'style' => [
'name' => 'Style(CSS)',
],

View File

@ -49,9 +49,11 @@
<div class="border small-notice py-3 px-4 mt-3">
<div class="d-flex text-muted">
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
<small class="ml-2 text-muted">
{{ trans('visiosoft.theme.base::field.register_information_note') }}
</small>
<a href="{{ setting_value('visiosoft.theme.base::register_page_alert_link') }}" class="ml-2">
<small class="text-muted">
{{ trans('visiosoft.theme.base::field.register_information_note') }}
</small>
</a>
</div>
</div>
</div>