Hello! When i use plugin "System - Language Filter", "URL Shortener" does not work..
I try to go to profile page, but i have redirected to dashboard..
I try to go to profile page, but i have redirected to dashboard..
System - Logged in Homepage plugin was caused the redirect to domain/en/feed- This is the normal behavior of the plugin, since for authorized users the main page is the Easysocial dashboard. And "/en" its normal too, because i use System - Language Filter for it!
As I enable the url shortener plugin and disable the System - Logged in Homepage plugin, it was working fine-
public function onAfterDispatch()
{
if ($this->isActive()) {
$itemId = $this->getItemId();
$menu = $this->app->getMenu();
$menu->setActive($itemId);
}
}
public function isActive($value = null)
{
static $_isactive = null;
if (! is_null($value)) {
$_isactive = $value;
}
if (is_null($_isactive)) {
return false;
}
return $_isactive;
}
Returning your changes back to the time.
1) If you disable short links and enable language filter, then the user's page works as it should.
2) If you disable the language filter and enable short links, then the user page also works as it should.