[V2.0.18.8] Moving the profile page's "About" box to the top; above "Edit profile"/ "New User"?
Hi there!
I'd like to change the order in which the sidebar elements on the profile page are displayed, but I'm having some trouble figuring out where they're being generated. Can anyone help put me on the right track?
Thanks in advance!
Best Answer
-
hgtonight MVP
Welcome to the community!
IIRC, you are looking for the module sort order of the panel asset on the profile controller.
Add this to your
/conf/config.php
file$Configuration['Modules']['Dashboard']['Panel'] = array('UserInfoModule');
. Any modules you specify in this array will be before any other module and in the order specified.P.S. You need to update for security reasons.
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
5
Answers
Welcome to the community!
IIRC, you are looking for the module sort order of the panel asset on the profile controller.
Add this to your
/conf/config.php
file$Configuration['Modules']['Dashboard']['Panel'] = array('UserInfoModule');
. Any modules you specify in this array will be before any other module and in the order specified.P.S. You need to update for security reasons.
Search first
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
Awesome, worked like a charm! Thanks for the quick reply!!
I'll also be sure to update; I downloaded it some time ago, but only now started using it.
Thanks again, cheers!