Are there extension or hooks to: List all products associated with a particular group List all products I'm thinking of somehthing like: PHP: $db->get_products($productid); Any plans to add this ?
It can be done, there are functions: $db->get_product($product_id); /// for group do this way $gproducts = array(); foreach ($db->get_products() as $p){ if ($p['price_group'] == '-1') $gproducts[] = $p; } print_r($gproducts);