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' => [ 'fields' => [
'navigation_title', 'navigation_action', 'date_fields', 'price_fields', 'navigation_title', 'navigation_action', 'date_fields', 'price_fields',
'breadcrumbs', 'ad_details', 'ad_details_tab', 'latest_and_view_all_btn', 'breadcrumbs', 'ad_details', 'ad_details_tab', 'latest_and_view_all_btn',
'register_page_instruction_logo' 'register_page_instruction_logo', 'register_page_alert_link'
], ],
], ],
'template' => [ 'template' => [

View File

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

View File

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

View File

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