tzyganu / UMC1.9

New Ultimate Module Creator for Magento 1.7 +
MIT License
242 stars 88 forks source link

Access to Product/Category Collection in Entity List View? #131

Closed paul-hph closed 7 years ago

paul-hph commented 7 years ago

How do I access the related products or category collection in the entity list template?

i tried:

$_entitiyname->getCategoryCollection();

dfelton commented 7 years ago

The generated class methods you are looking for is $_entityName->getSelectedCategories() and $_entityName->getSelectedProducts()

dfelton commented 7 years ago

Sorry if you're looking for the collection object, then use the methods in those same linked files, that end in "Collection".

paul-hph commented 7 years ago

Thank you!