Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
321 views
in Q2A Core by
I would like to disable, hide or relink "My details", because we use external code to handle authentication. Since upgrading to 1.5 the users can click My Updates and get then a link in the navigation to their account page.

I know, that I could remove it in qa-include/qa-app-format.php, but I would like to do it, so that i t survives an upgrade.

Thanks for your answers!
Q2A version: 1.4 Prod / 1.5 Test

1 Answer

0 votes
by

Thanks for spotting this - it's actually a bug since it doesn't make sense for that link to be displayed if you're using external user integration.

You can fix it in qa-page-favorites.php by adding:

if (!QA_FINAL_EXTERNAL_USERS)

... before ...

$qa_content['navigation']['sub']=qa_account_sub_navigation();

This fix will be rolled into the Q2A 1.5.1 release. Thanks again!

by
Many thanks for your quick answer. I verified it already and it works. So I can plan the upgrade of our prod system now.
...