Reply To: Widgets bottom of page

Home Forums Support Widgets bottom of page Reply To: Widgets bottom of page

Home Forums Support Widgets bottom of page Reply To: Widgets bottom of page

#229572
Tom
Lead Developer
Lead Developer

The blog page ignores any metabox changes – this is a WordPress limitation.

You can do it using CSS in this case:

.blog .footer-widgets {
    display: none;
}

If you want to remove it from the blog and archive pages (categories, archives etc..):

.blog .footer-widgets,
.archive .footer-widgets {
    display: none;
}