Howdy!
If you are using the default import/export option through WooCommerce here:
https://docs.woocommerce.com/document/product-csv-importer-exporter/
Then the following image rules apply:
* Images need to be pre-uploaded or available online to import to your store.
* External URLs are supported and imported into the Media Library if used.
* You can define the filename if the image already exists in the Media Library.
Also, it looks like you have multiple images designated in images
column of the CSV like so:
https://www.maticshop.it/benvenuto/wp-content/uploads/2017/03/Notebook-HP-EliteBook-8440p-Core-I5-1.jpg | https://www.maticshop.it/benvenuto/wp-content/uploads/2017/03/Notebook-HP-EliteBook-8440p-Core-I5..jpg | https://www.maticshop.it/benvenuto/wp-content/uploads/2017/03/Notebook-HP-EliteBook-8440p-Core-I5-1-1.jpg | https://www.maticshop.it/benvenuto/wp-content/uploads/2017/03/Notebook-HP-EliteBook-8440p-Core-I5.-1.jpg
And I even see issues with the format (example: the first image link ends with ..jpg
and should be .jpg
, etc.) – You need to make sure the image source links are all correct.
The fixed version of the image import should look like this:
https://www.maticshop.it/benvenuto/wp-content/uploads/2017/03/Notebook-HP-EliteBook-8440p-Core-I5-1.jpg, https://www.maticshop.it/benvenuto/wp-content/uploads/2017/03/Notebook-HP-EliteBook-8440p-Core-I5.jpg, https://www.maticshop.it/benvenuto/wp-content/uploads/2017/03/Notebook-HP-EliteBook-8440p-Core-I5-1-1.jpg, https://www.maticshop.it/benvenuto/wp-content/uploads/2017/03/Notebook-HP-EliteBook-8440p-Core-I5.-1.jpg
Using ,
by default to separate the image sources.
Try that, then let us know if that works. ??