Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to import products using a custom made import profile. Here I set some values on the product and then save it, like this:

$product = Mage::getModel('catalog/product');
$data = array();
// Inbetween I fill $data with some values
$product->addData($data);
$product->save();

However, the products do show up in the admin, but do not show up on the frontend (I did add them to categories).

The odd thing is, they do appear on the frontend once I open them in the admin and save them again (without modifying anything). Am I forgetting something, or some value that is somehow set by that action?

I tried to rebuild all indices in the backend and to clear the cache, but this does not work, contrary to Magento API: Rebuild Indexes after adding new products.

share|improve this question

1 Answer

up vote 1 down vote accepted

Some guesses, since this comes up from time to time. See also here.

share|improve this answer
Thanks, it might be because it is not enabled on the website.. All other things are alright. I have yet to figure out how to do that though. – Lucas Moeskops Dec 29 '10 at 16:34
Thanks, they are visible now, had to set the website_ids property. Nice blog by the way! – Lucas Moeskops Dec 30 '10 at 13:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.