Step 1 : Update your Db by the sql below
Step 2 : remove all template module and re-install it
Step 3 : remove all Dashboard module and re-install it


#insert in your phpmyAdmin this request in function of your language

#All language
ALTER TABLE `clic_products` CHANGE `products_sku` `products_sku` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL;
UPDATE `clic_configuration` SET `configuration_key` = 'STOCK_ALERT_PRODUCT_SOLD_OUT' WHERE `clic_configuration`.`configuration_key` = 'STOCK_ALERT_PRODUCT_EXHAUSTED';

--

#English
INSERT INTO clic_configuration VALUES(null, 'Do you want to Display the sidebar Menu in Admin', 'VERTICAL_MENU_CONFIGURATION', 'false', 'Select a choice to display a specific menu in your admininistration horizontal or sidebar.<br />', 43, 100, '2007-05-20 01:00:47', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(\'true\', \'false\'))');
INSERT INTO clic_configuration VALUES(null, 'Indicate a minimum number of characters to insert in the message before the customer can send it', 'MODULE_CONTACT_US_FORM_CONTENT_CARACTER', '90', 'Messages less than this number will not be sent. A warning pop up will be displayed to the client indicating the minimum number of characters', 6, 10, NULL, '2019-09-22 21:39:43', NULL, '');


#french
INSERT INTO clic_configuration VALUES(null, 'Souhaitez-vous afficher un menu vertical dans votre administration ', 'VERTICAL_MENU_CONFIGURATION', 'false', 'Veuillez sélectionner un choix pour afficher un menu spécific, hozizontal (false) ou vertical (true) dans votre administration.<br />', 43, 100, '2007-05-20 01:00:47', '2006-04-09 16:13:48', NULL, 'clic_cfg_set_boolean_value(array(\'true\', \'false\'))');
INSERT INTO clic_configuration VALUES(null, 'Indiquer un nombre minmmal de caractéres à insérer dans le message avant que le client puisse l\'envoyer', 'MODULE_CONTACT_US_FORM_CONTENT_CARACTER', '90', 'Les messages inférieures à ce nombre ne seront pas envoyés. Une pop up d\'avertissement sera affichée au client lui indiquant le nombre de caractére minimal', 6, 10, NULL, '2019-09-22 21:39:43', NULL, '');


