How to remove Search box and Get Update from footer in web pages in ERPNext

Hi @Shubham_Prabhat1,

Please go to the Website Setting and add CSS style in HTML Header, Robots and Redirects section.

<style>
.web-footer {
    display: none;
}
</style>

Output:

Thank You!

1 Like