Difference between @PageTitle and HasDynamicTitle

Hi everyone.
In my application, I’m using a slider menu.
I tried to make my pages title internationalized.
So I removed the @PageTitle annotation and implemented the HasDynamicTitle interface and overrided the getPageTitle method.
It worked perfectly with one exception : The page title is no longer displayed next to the drawer toggle.
See attached pics



Is there a way to have it back ?

Take a look at your main layout where you are setting this value - it’s not automatically, it’s something within your source code. There you might change the logic from “get value from annotation” to “cast class to HasDynamicTitle and get value”

That’s it.
Thanks for your help