Reputation: 31
I am facing one problem when i clicked on import button(backend) in woocommerce product menu it gives me error and that is this page isn't working i am also try from tools->import->WooCommerce products (CSV). I have also increase memory limit in php.ini file but i am facing same problem into it. I want to import products in my woocommerce store
Upvotes: 3
Views: 7367
Reputation: 51
Let's sum up what you can do if WooCommerce import not working. Most often, import issues occur because some plugins or themes turn out to be incompatible with the system. So a common recommendation would be to disable plugins to find out which one causes a conflict and temporarily switch to the WordPress default theme
I found another importer by theme when I deactivate that importer the problem was solved.
Upvotes: 0
Reputation: 81
I had same Issue and after several attempts that failed, I finally fixed it.
Temporarily changed themes to twenty seventeen. Then imported the products
OR
Try saving the permalinks under Settings > Permalinks > Save and try the import again?
OR
Check if the theme has a demo importer, if yes, disable it and that should work.
Upvotes: 1
Reputation: 1624
Try to increase the memory,
Put the line on wp-config.php file,
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
Now, you can try to import the file
Upvotes: 0