Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
  • Register
Welcome to the Q&A for Question2Answer.

If you have questions about the platform, click here to ask and please use English.

If you just want to try Q2A, please use the demo, which also grants admin access.

Apr 29: Q2A 1.5.2

Disable or hide "My details"

+1 vote
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
asked Feb 1 in Q2A Core by chris1972

1 Answer

0 votes

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!

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