diff --git a/admin-dev/themes/default/template/helpers/options/options.tpl b/admin-dev/themes/default/template/helpers/options/options.tpl
index 919d32b16..89342beeb 100644
--- a/admin-dev/themes/default/template/helpers/options/options.tpl
+++ b/admin-dev/themes/default/template/helpers/options/options.tpl
@@ -58,7 +58,7 @@
- {if ($field['multishop_default'])}
+ {if $field['multishop_default'] && empty($field['no_multishop_checkbox'])}
diff --git a/cache/class_index.php b/cache/class_index.php
index ac1332efc..d2876e362 100644
--- a/cache/class_index.php
+++ b/cache/class_index.php
@@ -510,7 +510,6 @@
'ProfileCore' => 'classes/Profile.php',
'QuickAccess' => 'override/classes/QuickAccess.php',
'QuickAccessCore' => 'classes/QuickAccess.php',
- 'Range' => 'override/classes/range/Range.php',
'RangePrice' => 'override/classes/range/RangePrice.php',
'RangePriceCore' => 'classes/range/RangePrice.php',
'RangeWeight' => 'override/classes/range/RangeWeight.php',
diff --git a/classes/helper/HelperOptions.php b/classes/helper/HelperOptions.php
index 15527e4f1..0429cb9f3 100644
--- a/classes/helper/HelperOptions.php
+++ b/classes/helper/HelperOptions.php
@@ -63,8 +63,12 @@ class HelperOptionsCore extends Helper
if (!isset($category_data['fields']))
$category_data['fields'] = array();
+ $category_data['hide_multishop_checkbox'] = true;
foreach ($category_data['fields'] as $key => $field)
{
+ if (empty($field['no_multishop_checkbox']))
+ $category_data['hide_multishop_checkbox'] = false;
+
// Set field value unless explicitly denied
if (!isset($field['auto_value']) || $field['auto_value'])
$field['value'] = $this->getOptionValue($key, $field);
diff --git a/controllers/admin/AdminThemesController.php b/controllers/admin/AdminThemesController.php
index 88ea2ec6c..bc2f96dc1 100644
--- a/controllers/admin/AdminThemesController.php
+++ b/controllers/admin/AdminThemesController.php
@@ -109,6 +109,7 @@ class AdminThemesControllerCore extends AdminController
'themes' => Theme::getThemes(),
'id_theme' => $this->context->shop->id_theme,
'can_display_themes' => $this->can_display_themes,
+ 'no_multishop_checkbox' => true,
),
),
),