OK, as I said, this is a bug / incompatibility in the component.
To fix it open the file "components/com_phocagallery/views/categories/view.html.php" and on line 138 replace:
$categories[$key]->link = JRoute::_('index.php?option=com_phocagallery&view=category&id='. $category->slug);
with:
$categories[$key]->link = JRoute::_('index.php?option=com_phocagallery&view=category&id='. $category->slug .'&Itemid='. JRequest::getVar('Itemid', 1, 'get', 'int'));
That should fix it.