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

How to remove Search box and Get Update from footer in web pages for all web pages?

Regards
Shubham

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

Thanks you