+ - 0:00:00
Notes for current slide
Notes for next slide

Configurable Products

MUG ′s Hertogenbosch

1 of 8

Importeren van CP

  • Eerst Simple Products aanmaken
    • Mage_Catalog_Model_Product_Type::TYPE_SIMPLE
  • Dan Configurable Product aanmaken
    • Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE
  • Dan mapping aanmaken
2 of 8

Mapping tussen SP en CP

Altijd op basis van product attributen die zijn ingesteld als configureerbaar via Attribute Management.

$blueSimpleProduct = Mage::getModel('catalog/product')->load(3);
$greenSimpleProduct = Mage::getModel('catalog/product')->load(8);
$configurableProduct = Mage::getModel('catalog/product')->load(21);
$colorAttribute = Mage::getModel('eav/entity_attribute')
->loadByCode('catalog_product', 'color');
$configurableProductsIds = array(3, 8); // array product IDs
$configurableAttributesData = array(); // volgende slide
$configurableProduct->setConfigurableProductsData($configurableProductsIds);
$configurableProduct->setConfigurableAttributesData($configurableAttributesData);
$configurableProduct->setCanSaveConfigurableAttributes(true);
3 of 8

Mapping tussen SP en CP

$configurableAttributesData[] = array(
'id' => null,
'label' => 'color',
'frontend_label' => 'Color',
'attribute_id' => $colorAttribute->getId(),
'attribute_code' => 'color',
'values' => array(
array(
'label' => 'Blue',
'value_index' => $blueSimpleProduct->getData('color'),
'is_percent' => false,
'pricing_value' => 10.99,
),
array(
'label' => 'Green',
'value_index' => $greenSimpleProduct->getData('color'),
'is_percent' => false,
'pricing_value' => 11.99,
),
),
'position' => 0,
);
4 of 8

Oude mappings weg

Opschonen van tabel catalog/product_super_attribute

$resource = Mage::getSingleton('core/resource');
$write = $resource->getConnection('core_write');
$table = $resource->getTableName('catalog/product_super_attribute');
$write->delete($table, 'product_id = ' . $product->getId());
5 of 8

Performance bij import

  • Zet indices op "Manual"
  • Caching aan
  • Flat catalog uit
  • MySQL tuning
6 of 8

Gemompel

  • Performance van CP wordt bepaald door:
    • Inladen van gerelateerde SP
    • Mapping tussen SP en attributen
  • Wat als die mapping wordt gecached?
    • Alleen op categorie paginas
    • Include visible attributes in mapping
7 of 8

thanks for all the fish

8 of 8

Importeren van CP

  • Eerst Simple Products aanmaken
    • Mage_Catalog_Model_Product_Type::TYPE_SIMPLE
  • Dan Configurable Product aanmaken
    • Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE
  • Dan mapping aanmaken
2 of 8
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow