Let's ask the question clearly before entering into the details:


Is there a way of hard deleting an attribute value from a product?

By hard I mean, removing the row from the database and not only setting the value to null or empty.


Now, the details:

I'm currently confronted to a problem on Magento.

Many product in my store have user defined attributes that are not related to the product. For example, let's say we have a bag product, among other products like t-shirts,dresses,pants,etc.:

Our bag product has only configurable 1 attribute: color.

Our T-Shirt product has 2 configurable attributes: color and tshirt_size.

Our Dress product has 2 configurable attributes: color and dress_size

My current problem is that when I retrieve my Bag product from the database, the attributes stored in my product are: color, tshirt_size and dress_size.

I suspect that it is because on our store you can change the attribute set of a product (thanks to the FlagBit ChangeAttributeSet community extension).

I think that the bag product has been created with a specific attribute set, then someone changed the attribute set to another, and another again. That would have lead the product to get ALL the attributes from ALL the attribute sets it has been changed to. But that's just a though, and it could be another reason. I'm actually currently not looking for the specific reason that led my product to have unrelated attributes.

I today want to reset my products. By reset I mean removing the attributes unrelated to my product. In the case of my bag, that means removing the tshirt_size and dress_size attributes. And by removing I mean deleting forever these attributes from the object.

My problem is that, I can't find how to do it. I tried setting the attributes to NULL and saving the product, but when I query again the product, I still get the attribute in the datas, with a null value. I don't want the attribute value to be null, I want the attribute to not exist.

Here is a sample of code that explains a bit what I tried:

$product = Mage::getModel('catalog/product')->load(1234); //Let's assume that my bag product ID is 1234

Mage::log($product->getData());

/* This last line dump all my products datas and contains among other things:

[...]=>...
[color]=>3
[tshirt_size]=>34
[dress_size]=>45
[...]=>...

*/

If I do a:

$product->setData('tshirt_size',null);
$product->setData('dress_size',null);
$product->save();

then again:

$product = Mage::getModel('catalog/product')->load(1234);
 Mage::log($product->getData());

    /* I get:

    [...]=>...
    [color]=>3
    [tshirt_size]=>null
    [dress_size]=>null
    [...]=>...

    */

I don't want that. I want:

/*

[...]=>...
[color]=>3
[...]=>...

*/

The fact that I still have the entries in my array mean that the actual rows in the database are not deleted. I want the rows to be deleted.

Even more frustrating, when I do a:

$product->getAttributes();

It returns me all the attributes that can be set to my product without the unrelated attributes -which makes sense because the unrelated attributes are not in the attribute set of my product.

So, again, the question is:

Is there a way of hard deleting an attribute value from a product?

By hard I mean, removing the row from the database and not only setting the value to null or empty.

Thanks for your help!

Hugues.

FYI: I'm using Magento 1.6.1.0 (but it does not really change anything)

link|improve this question

40% accept rate
I'm curious to know a nice method for this as well, since it would be super handy to know how to properly fix broken extensions that rely on attributes. – pspahn Feb 21 at 18:05
feedback

3 Answers

Ok, I found it finally, 15 minutes after asking the question (and spending few hours trying to solve it)

Here is the answer:

$product = Mage::getModel('catalog/product')->load(1234); //Let's assume that my bag product ID is 1234
$product->setData('unwanted_attribute',null);    

$resource = $product->getResource();
$resource->saveAttribute($product,'unwanted_attribute');

Edit: This doesn't work. If you re-save the product later by doing a $product->save(), all the attributes reappear.

link|improve this answer
feedback

You should be able to unset the value like either of these:

$product->unsetData('unwanted_attribute')
        ->save();

$product->unsUnwantedAttribute()
        ->save();
link|improve this answer
This doesn't remove the data from the database. Do a new $product->load() after your code, you'll see that key 'unwanted_attribute' still exists. And in your case the value will not even be null or empty, it will be the same as the previous one. – Hugues ALARY Jan 3 at 21:11
feedback

you need to go to admin>>catalog>>attributes>>manage attribute sets if your trying to manage your product catalog you should first think of your attributes (separate to your product), then your sets(again not actually part of your products). after you have properly established your attributes and sets (of attributes) you can apply them to products with values for each attribute.

or maybe you prefer this kinda thing?

class Mage_catalog_Model_Product_Attribute_Set_Api extends Mage_Api_Model_Resource_Abstract
{
 {
/**
 * Retrieve attribute set list
 *
 * @return array
 */
public function items()
{
    $entityType = Mage::getModel('catalog/product')->getResource()->getEntityType();
    $collection = Mage::getResourceModel('eav/entity_attribute_set_collection')
        ->setEntityTypeFilter($entityType->getId());

    $result = array();
    foreach ($collection as $attributeSet) {
        $result[] = array(
            'set_id' => $attributeSet->getId(),
            'name'   => $attributeSet->getAttributeSetName()
        );

    }

    return $result;
 }
} // Class Mage_Catalog_Model_Product_Attribute_Set_Api End
link|improve this answer
That does not answer at all to the question – Hugues ALARY Apr 12 at 19:25
if his attribute set contains attributes that are not required the can be managed out of the set in admin. the null value is possibly created by magento since it doesnt save null values for eav attributs? he says hard deleting from the object which i presume he means deleting the attributes from the attribute set where else is this info stored? – gerard Apr 12 at 20:27
feedback

Your Answer

 
or
required, but never shown

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