• Resolved gorbunoff09

    (@gorbunoff09)


    Hello, we use plugin MasterStudy

    We could not find in the settings the ability that would be responsible for the tabs and menus in the personal account.

    How to change the order of the tabs or delete some of them in the private account page? For example, we want that the tabs “my orders”, “messages” not to be displayed in the menu. How to do this?

    screenshot

    Maybe you can advise how this can be fixed in files php

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support EricStylemixThemes

    (@ericstylemixthemes)

    Hello @gorbunoff09 ,

    Thank you for reaching out!

    There is no option by default to change an order or delete items of the tabs in the user account.

    You can hide the elements using custom CSS rules.

    Best wishes

    Thread Starter gorbunoff09

    (@gorbunoff09)

    Hello
    Thank you for your answer
    It is impossible to resolve this problem by hiding elements through css. Since each element in the layout is not unique. The css style is painted on all elements, if you add Display: none; , all the elements of the navigation menu are removed

    Hello, @gorbunoff09

    Thanks for reaching out!

    In order to delete items of the tabs, go to the Appearance from Dashboard. Then from the menu choose Customize, and click Additional CSS. Paste following code to the box:

    .stm_lms_acc_tabs__secondary.active .stm_lms_acc_tabs__secondary_inner .stm_lms_acc_tabs__secondary_inner__section:first-child .float_menu_item.float_menu_item__inline:nth-child(2) {
    display: none;
    }

    .stm_lms_acc_tabs__secondary.active .stm_lms_acc_tabs__secondary_inner .stm_lms_acc_tabs__secondary_inner__section:last-child .float_menu_item.float_menu_item__inline:nth-child(3) {
    display: none;
    }

    Kind regards.

    Thread Starter gorbunoff09

    (@gorbunoff09)

    Thank you for your answer
    But it work at the same time for two kind of accounts for “instructors” and for “students”
    For example we want to delete only one tab “My orders”

    At the instructor account page its :nth-child(8)
    At the student account page its :nth-child(6)

    if we rewrite the :nth-child(6) item in css styles, which is located in the student account page, it affects the menu item in the instructor account page that we don’t want to delete

    Dear @gorbunoff09

    seems there is a misunderstanding!

    It needs to customize the core templates of the plugin in order to realize your request. And CSS will not resolve this issue as you already can see.

    regards

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to change the order of the tabs or delete’ is closed to new replies.