Tagged: enfold, enfold theme
I would like to remove the default pages sidebar in the 404 layout and instead have a sidebar layout of my choosing? Thanks in advance.
You can’t easily replace the sidebar with another sidebar but you can use widget logic: http://wordpress.org/plugins/widget-logic/ to show/hide certain widgets on the 404 page.
Add following condition to widgets which you want to show on 404 pages:
is_404()
and use following condition to hide them
!is_404()