How to not display the footer on same page / mobile
-
Hi,
on my mobile version, i would like to deactivate the footer so the product page, and cart / checkout page
How to do it ?
I can deactivate the footer on specific page, but i don’t find how to deactivate them only on the mobile version.
Thanks
Hello,
Please add this code to the Theme Settings > Custom CSS > Mobile:
body.single .footer-container{
display:none;
}
body.woocommerce-cart .footer-container{
display:none;
}
body.woocommerce-chekout .footer-container{
display:none;
}
Best Regards