Voor een webwinkel wil ik een atributenset aangemaakt die gebruikt gaat worden voor al ingevoerde produkten.
Maar hoe krijg ik die zichtbaar?
Bij het invoeren van een nieuw produkt kan ik dat natuurlijk kiezen, maar hoe doe ik dat met bestaande artikelen?
Solved! Go to Solution.
Hi @maantje,
You can do this in 2 ways, change them with at module or directly in the database
Module:
https://www.magentocommerce.com/magento-connect/flagbit-change-attribute-set.html
Database:
It's also possible to change the attribute set directly in the database.
eav_attribute_set
catalog_product_entity on every old product
To find the product ID's of the products you want to change, go to catalog > product > load a product up, and the look in the url-line of the browser. The ID will be a 5-figure combination of numbers between 2 x / (eg. /56744/ )
Test this with 1 or 2 products, change in the database, then go to magento admin and run a full re-index.
Of course, be very careful when changing data this way!!!!! Doing this could ruin your store, so take a backup of all files on the ftp server and a complete backup of the database, before
Hope this helps.. Let me know
Hi @maantje,
You can do this in 2 ways, change them with at module or directly in the database
Module:
https://www.magentocommerce.com/magento-connect/flagbit-change-attribute-set.html
Database:
It's also possible to change the attribute set directly in the database.
eav_attribute_set
catalog_product_entity on every old product
To find the product ID's of the products you want to change, go to catalog > product > load a product up, and the look in the url-line of the browser. The ID will be a 5-figure combination of numbers between 2 x / (eg. /56744/ )
Test this with 1 or 2 products, change in the database, then go to magento admin and run a full re-index.
Of course, be very careful when changing data this way!!!!! Doing this could ruin your store, so take a backup of all files on the ftp server and a complete backup of the database, before
Hope this helps.. Let me know
Thank you very much for solving this problem!!
No problem - glad to help