When creating a new profile page, it's possible to name it (example : "detailed profile") but once validated, the name is automatically changed to "My detailed profile".
This "My" is especially ugly in other languages (French example : "My profil détaillé").
Furthermore, this "My" is useless since it could be added if desired in name configuration (I can call my example "My detailed profile" straight away... and if I do it now I will get "My My detailed profile" :-/
Comments
Comment #1
sapguroo commentedYes, How do I remove this ? i have so many profiles types, this "my " is eating up space
Comment #2
joachim commentedIt's translatable content, so if your site is localized that should get translated.
Alternatively, you can use http://drupal.org/project/stringoverrides to change it.
Finally, the function that generates this is specified in profile2_page_menu(). Therefore a hook_menu_alter() will let you put your own callback there and output what you want.
I think that's sufficient ways to customize this or remove this; changing to support request and closing :)
Comment #3
sapguroo commentedDone
Thanks