Viewing 3 replies - 1 through 3 (of 3 total)
  • Did you use the demo csv file? I think I remember I had the change the image field name in the csv file to “featured_image” to get it to work correctly.

    Could be something else in your case but maybe worth a try. (fyi i’m not the author just a user)

    You need to add trim to $url in file woocommerce-csvimport/includes/class-woocsv-product.php last function

    public function isValidUrl($url)
    	{
    		// alternative way to check for a valid url
    		// !development
    		if  (filter_var(trim($url), FILTER_VALIDATE_URL) === FALSE) return false; else return true;
    
    	}

    Problem appear if you have space before or after url

    Plugin Author allaerd

    (@allaerd)

    image from url is completely rewritten in 3+

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Not importing featured_image or gallery_image data’ is closed to new replies.