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?

#439929

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