Search code examples
csswordpresswoocommercestylescheckout

How to remove "Hello Member" in Woocommerce Checkout page?


i want to remove this area, in checkout page, but every my try was not working. I tryed to insert this CSS:

.avada-myaccount-user-column .username {
display:none;
}

enter image description here enter image description here

This is product that trying to insert into cart, for testing purposes. Someone to help me ?


Solution

  • .avada-myaccount-user-column .username will not work because .username is not a child of .avada-myaccount-user-column.

    Change your CSS to:

    .avada-myaccount-user-column.username {
        display: none;
    }
    

    This example means the first class requires the second class for it to be affected.