Hi Jeff,
This is not possible using the code right now without modifying core files of the plugin but I have tried following CSS which may help you out but this is not the best solution but will help you to achieve what you want. Put the following CSS in your style.css of the current theme:
.uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul {
display: flex;
}
.uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul li:last-child {
order: 1;
}
.uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul li:first-child {
order: 2;
}
.uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul li:nth-child(2) {
order: 3;
}
.uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul li:nth-child(3) {
order: 4;
}
.uwp_page .uwp-content-wrap .uwp-profile-main .uwp-profile-nav ul li:nth-child(4) {
order: 5;
}
You need to change/add CSS when you add more tabs or you can take help of frontend developer for this customization.
Let me know your inputs.
Regards,
Patrik