diff --git a/modules/themeconfigurator/themeconfigurator.php b/modules/themeconfigurator/themeconfigurator.php index 4e519f5f6..7f9c4b69f 100644 --- a/modules/themeconfigurator/themeconfigurator.php +++ b/modules/themeconfigurator/themeconfigurator.php @@ -135,19 +135,33 @@ class ThemeConfigurator extends Module { return array( array( - 'label' => $this->l('Display reinsurance block'), + 'label' => $this->l('Display the reinsurance block'), 'name' => 'blockreinsurance', 'desc' => ''.$this->l('Configure the reinsurance block').'', 'value' => (int)(Validate::isLoadedObject($module = Module::getInstanceByName('blockreinsurance')) && $module->active), 'is_module' => true, ), array( - 'label' => $this->l('Display social block'), + 'label' => $this->l('Display the social following links'), 'name' => 'blocksocial', - 'desc' => ''.$this->l('Configure the social block').'', + 'desc' => ''.$this->l('Configure the social following links').'', 'value' => (int)(Validate::isLoadedObject($module = Module::getInstanceByName('blocksocial')) && $module->active), 'is_module' => true, ), + array( + 'label' => $this->l('Display contact information'), + 'name' => 'blockcontactinfos', + 'desc' => ''.$this->l('Configure the contact information of your store').'', + 'value' => (int)(Validate::isLoadedObject($module = Module::getInstanceByName('blockcontactinfos')) && $module->active), + 'is_module' => true, + ), + array( + 'label' => $this->l('Display social buttons on the products page'), + 'name' => 'addsharethis', + 'desc' => ''.$this->l('Configure').'', + 'value' => (int)(Validate::isLoadedObject($module = Module::getInstanceByName('addsharethis')) && $module->active), + 'is_module' => true, + ), array( 'label' => $this->l('Enable Quick view'), 'name' => 'quick_view',