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
could you use css?
.woocommerce-BlankState-buttons {
display: none;
}
That's how it looks.
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.