mirror of
https://github.com/openclassify/openclassify.git
synced 2026-02-10 15:26:10 -06:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
c3b005f48c
@ -53,6 +53,7 @@ return [
|
||||
'create_ad' => [
|
||||
'title' => 'visiosoft.module.advs::section.create_ad',
|
||||
'fields' => [
|
||||
'hide_contact_created_at',
|
||||
'show_tax_field',
|
||||
'detailed_product_options',
|
||||
'steps_color',
|
||||
|
||||
@ -469,4 +469,10 @@ return [
|
||||
'default_value' => false,
|
||||
],
|
||||
],
|
||||
'hide_contact_created_at' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
]
|
||||
];
|
||||
|
||||
@ -133,6 +133,9 @@ return [
|
||||
],
|
||||
'market_place' => [
|
||||
'name' => 'Market Place',
|
||||
'instructions' => 'If the marketplace is down, your site will act as ecommerce. For example,
|
||||
some fields in the profile such as ads, dopings, messages, sale, packages and store are not visible and
|
||||
removes corporate membership.'
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Price Area Hidden',
|
||||
@ -280,4 +283,7 @@ return [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
'hide_contact_created_at' => [
|
||||
'name' => 'Hide Contact Fields For in Create New Ad'
|
||||
]
|
||||
];
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
{% if (setting_value('visiosoft.module.advs::hide_contact_created_at') != true) %}
|
||||
<div id="contactInfo" class="mb-3">
|
||||
<h3>{{ trans('visiosoft.module.advs::field.contact_info') }}</h3>
|
||||
<div id="reachInfo">
|
||||
@ -38,3 +39,4 @@
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
(function (window, document) {
|
||||
/* Offline */
|
||||
window.addEventListener('offline', () => {
|
||||
$('body > *').hide();
|
||||
@ -17,4 +16,3 @@
|
||||
}, 250)
|
||||
})
|
||||
/* End Offline */
|
||||
})(window, document);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user