• Resolved wealthy

    (@wealthy)


    I tried to use CSS to hide Account details and Logout buttons in the Profile Dashboard (Accounts Page), but it would not hide?
    How can I hide those two buttons

    .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation-link–logout>a {
    display: none !important;
    }
    .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation-link–edit-account>a {
    display: none !important;
    }

    https://pasteboard.co/5FjT7kl1y48m.png

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Ali Akbar Reyad

    (@alireyad)

    Hi,
    Yes, you can hide it using CSS but I think better way to remove it using hook if don’t want these 2 links will be hide for users.

    .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation-link--logout {
    display: none !important;
    }
    .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation-link--edit-account {
    display: none !important;
    }

    Thank you

    Thread Starter wealthy

    (@wealthy)

    Thanks That worked.
    I dont understand Hooks and can only do CSS. so thankyou for the code

    Plugin Support Ali Akbar Reyad

    (@alireyad)

    Okay, nice to hearing from you that works.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hide Acct Details And Logout’ is closed to new replies.