Search code examples
phpwordpresswoocommercehook-woocommerce

Hide woocommerce orders page learn more button


When orders page is empty there is a button that is **learn more about orders button ** also another button in coupons button .. we need a way to hide this button is there is a hook or something ?

Button in the page: https://snipboard.io/F2YklM.jpg


Solution

  • could you use css?

    .woocommerce-BlankState-buttons {
        display: none;
    }
    

    That's how it looks.

    enter image description here

    To hide the button on the coupons section you can try this.

    .woocommerce-BlankState .woocommerce-BlankState-cta {
        display: none;
    }
    

    That's how it looks for me.

    enter image description here