Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #223460

    ================

    (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();
    • This topic was modified 10 years, 9 months ago by turner2f.
    #224211

    Hey Anthony!

    Thank you very much for sharing this info :)

    Regards,
    Josue

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.