Hi.
I found that Member Home is not working on a multilanguage site.
I investigated about and I found this:
docs.joomla.org/How_to_determine_if_the_...ewing_the_front_page
Then, I applied the fix in plugins\system\memberhome\memberhome.php
In the last lines, I changed
$defaultMenu = $menu->getDefault();
to
$defaultMenu = $menu->getDefault($lang->getTag());
I also added $lang = JFactory::getLanguage(); to the top of the file.
The plugin is working now also in my multilanguage file.
Hope it could be useful!