2018-02-13, 11:59:00
Hey Bigin, i just found your plugin and i'm sure it's the one i've been looking for a long time
Can you please help my to get the following idea working:
Thanks a lot for your work!!

Can you please help my to get the following idea working:
PHP Code:
<?php
$manager = new IManager();
$categoryClass = $manager->getCategoryClass();
$itemClass = $manager->getItemClass();
$category = $categoryClass->getCategory(1);
$itemClass->init($category->get('id'));
$items = $itemClass->getItems(1, 'active=1');
foreach($items as $item) {
$image = $item->fields->profilbild->imagefullurl[1];
$name = $item->fields->name->value;
$instrument = $item->fields->instrument->value;
};
?>
Thanks a lot for your work!!