Hi @damianwfoster
I recently wanted the same and accomplished the removal of Orders from the user dashboard in the following manner:
/* Hide the "Orders" tab in the LearnPress dashboard of a logged in user */
#learn-press-profile-nav .learn-press-tabs .orders {
display: none!important;
visibility: hidden!important;
}
If you want to remove more than one item then you must separate by comma with no comma for the last item E.g.,
/* Hide the "Orders" and "Settings" tabs in the LearnPress dashboard */
#learn-press-profile-nav .learn-press-tabs .orders,
#learn-press-profile-nav .learn-press-tabs .settings {
display: none!important;
visibility: hidden!important;
}
Credit to @fabiograsso here: Thread Link
I couldn’t figure out the redirects side of things and really have no need to anyway but hope this helps.