Home › Forums › WoodMart support forum › How to undisplay the footer content html block on checkout? › Reply To: How to undisplay the footer content html block on checkout?
February 2, 2023 at 4:04 pm
#439929
Aizaz Imtiaz Awan
Keymaster
Hello,
Please try using the below Custom CSS code and paste it to Dashboard >> Theme Settings >> Custom CSS >> Global CSS section:
This will hide the Footer overall from your Site:
.footer-container {
display: none !important;
}
This will make the Footer appear only on Archive page:
.archive .footer-container {
display: block !important;
}
Hope this helps !
Best Regards