================
(1) Concerning how to customize the sidebar for the “404 Page” see:
https://kriesi.at/support/topic/edit-the-404-layout/
FIRST – Add a widget into the “Displayed Everywhere” widget area and use:
http://wordpress.org/extend/plugins/widget-logic/
SECOND – Then show or hide certain widgets on the 404 page:.
Add following condition to widgets which you want to SHOW on 404 pages:
is_404()
Or use following condition to HIDE them on 404 pages:
!is_404()
=================
(2) Concerning how to make the default 404 sidebar disappear see:
https://kriesi.at/support/topic/set-404-error-page-to-full-width/
FIRST – Please go to Appearance > Editor and open 404.php file and search for following lines
$avia_config['currently_viewing'] = 'page'; get_sidebar();
SECOND – Then comment them out as following…
//$avia_config['currently_viewing'] = 'page'; //get_sidebar();
Hey Anthony!
Thank you very much for sharing this info :)
Regards,
Josue