Coder Social home page Coder Social logo

Comments (2)

patrick-bigbridge avatar patrick-bigbridge commented on June 1, 2024 1

Hello!

Thanks for using the library and for asking the question!

What you are doing looks fine and should work. I just created a test scenario that does what I think you are doing, and it succeeded. Simple "scalar" attributes can be removed from the database by setting them to null. So if you want to keep the values at the global level and remove the values from store view "default" you need to do

$global = $product->global();
$global->setName($this->_productData['name']);

$default = $product->storeView('default');
$default->setName(null);

$importer->importSimpleProduct($product);
$importer->flush();

If this still doesn't work, tell me what exactly does not work: do you get an error ($product->getErrors()) or is the attribute just not removed from the table catalog_product_entity_varchar (with store_id from default)? And if possible show me all relevant code you use to import products.

Good luck!

from product-import.

haelbichalex avatar haelbichalex commented on June 1, 2024 1

My bad...
Setting attributes to null removes them from the database! 👍

from product-import.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.