Eveytime I want to upload an image I get an HTTP error. When I check for the image on the server though I can see that it has been uploaded. Only variations of the file of different sizes which seemingly get created upon the upload of the original image, seem to have 0 bytes (this may be due to the HTTP error?)
Also; another question: After uploading an image, in my woocommerce theme the image in my shop just looks too big or rectangular of different dimensions. Doesn't woocommerce automatically resize and adjust the images to they look all the same when previewing them in the shop?
There is an option somewhere where you can say that you want the image to be resized but once you do, the image will look low quality and parts of it will get cut out etc.
How do I go about uploading images of the product so that it will be all shown in the same square dimension in my shop?
Eveytime I want to upload an image I get an HTTP error. When I check for the image on the server though I can see that it has been uploaded. Only variations of the file of different sizes which seemingly get created upon the upload of the original image, seem to have 0 bytes (this may be due to the HTTP error?)
Also; another question: After uploading an image, in my woocommerce theme the image in my shop just looks too big or rectangular of different dimensions. Doesn't woocommerce automatically resize and adjust the images to they look all the same when previewing them in the shop?
There is an option somewhere where you can say that you want the image to be resized but once you do, the image will look low quality and parts of it will get cut out etc.
How do I go about uploading images of the product so that it will be all shown in the same square dimension in my shop?
For fixing HTTP error, follow these steps:
You can find more information about these steps right here.
Regarding too big images issue, add these CSS codes in the Custom CSS Box provided through the Customizer Options:
.woocommerce #primary .images img {
width: auto;
}