• The current dashboard page shows tabs in the following order… Settings, Courses, Orders, Quiz Results, Wishlist…

    How can I remove the tabs I don’t want to display?

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi,

    Now we don’t have the option to hide it but you can use CSS code to hide it.

    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.

    i use this one and its working

    #learn-press-user-profile .profile-tabs .orders {
        display: none!important;
        visibility: hidden!important;
    }

    @archonic08 It seems you used a slight variance and maybe that is due to the fact that there have been a couple of updates to the LearnPress plugin just recently and it was neccessary perhaps.

    Regardless, good to see you post yet another solution to solve the “problem”.

    Anyone trying to do this stuff simply needs to have a half reasonable understanding of how CSS works and how to dig into it – for this I would personally recommend the Microthemer plugin to target what you need to and where that is not possible (because you need to be logged in to the WP back-end as an Admin to use it) you can simply use the inspect element feature of any modern browser.

    BTW – not trying to exert knowledge here, simply explaining what can be used to accomplish what IT is that NEEDS to be done under ANY circumstance.

    Can we change the color combinations for student profile page in learnpress

    I want to add a new button on the student dashboard after the setting button, how can I do this? Please help me

    • This reply was modified 4 years, 2 months ago by saifulbabo.
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Student Profile Page (Dashboard)’ is closed to new replies.