1sweetman Posted March 21, 2014 Share Posted March 21, 2014 Hi Have upgraded to 1.6.0.5 and it is 99% working. My problem is with multiple images on products - the main image that appears are all fine however the smaller multiple images are only showing as white boxes - I have deleted the images out of one item saved it, refreshed, then re-added images but to no avail. The images are 'there' if you click on the white boxes. I have tried to regenerate the images but to no avail. I have attached a few images to show what I mean - the grey 'smudge' at the top of the white boxes is the text description of the image compresses to one line. Any advice or tips greatfully accepted. Thanks in advance Link to comment Share on other sites More sharing options...
1sweetman Posted March 21, 2014 Author Share Posted March 21, 2014 Update - looks like some of the image sizes didn't migrate/upgrade properly - small is showing as only 10px in height. Does anyone have a screenshot of the correct settings for default-bootstrap theme so I can adjust them and see if corrects problem. Thanks Link to comment Share on other sites More sharing options...
deuterit Posted March 21, 2014 Share Posted March 21, 2014 You can always install default presta and see settings in backend. Here you have default presta 1.6.0.5 image types (remember to backup your current data before executing these sql): -- -- Table structure for table `ps_image_type` -- DROP TABLE IF EXISTS `ps_image_type`; /*!40101 SET @saved_cs_client = [spam-filter]character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ps_image_type` ( `id_image_type` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL, `width` int(10) unsigned NOT NULL, `height` int(10) unsigned NOT NULL, `products` tinyint(1) NOT NULL DEFAULT '1', `categories` tinyint(1) NOT NULL DEFAULT '1', `manufacturers` tinyint(1) NOT NULL DEFAULT '1', `suppliers` tinyint(1) NOT NULL DEFAULT '1', `scenes` tinyint(1) NOT NULL DEFAULT '1', `stores` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id_image_type`), KEY `image_type_name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ps_image_type` -- LOCK TABLES `ps_image_type` WRITE; /*!40000 ALTER TABLE `ps_image_type` DISABLE KEYS */; INSERT INTO `ps_image_type` VALUES (1,'cart_default',80,80,1,0,0,0,0,0); INSERT INTO `ps_image_type` VALUES (2,'small_default',98,98,1,0,1,1,0,0); INSERT INTO `ps_image_type` VALUES (3,'medium_default',125,125,1,1,1,1,0,1); INSERT INTO `ps_image_type` VALUES (4,'home_default',250,250,1,0,0,0,0,0); INSERT INTO `ps_image_type` VALUES (5,'large_default',458,458,1,0,1,1,0,0); INSERT INTO `ps_image_type` VALUES (6,'thickbox_default',800,800,1,0,0,0,0,0); INSERT INTO `ps_image_type` VALUES (7,'category_default',870,217,0,1,0,0,0,0); INSERT INTO `ps_image_type` VALUES (8,'scene_default',870,270,0,0,0,0,1,0); INSERT INTO `ps_image_type` VALUES (9,'m_scene_default',161,58,0,0,0,0,1,0); /*!40000 ALTER TABLE `ps_image_type` ENABLE KEYS */; UNLOCK TABLES; Link to comment Share on other sites More sharing options...
1sweetman Posted March 21, 2014 Author Share Posted March 21, 2014 You're right I could have - sorry didn't give it a thought - too tired - been a long week. Thanks anyway Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now