Viewing 1 replies (of 1 total)
  • Plugin Contributor Peter Raschendorfer

    (@petersplugins)

    The plugin works for all 404 error, independent of content type.

    The problem on your website is that your theme (or custom CSS code) generates different styles. Example:

    https://coachfoundation.com/blog/hghg/ contains an featured image, but the image is hidden using “display: none”. That’s not the case on https://coachfoundation.com/blog/wp-content/uploads/2020/11/ALLr-09-scaled.jpg/ and that’s why the image is shown on that page.

    To get rid of the featured image on every 404 page you could add the following code in Appearance / Customize / Additional CSS:

    .error404 .featured-image {
    display: none;
    }

    You’d have to examine all the differences and add the CSS code to unify the way how 404 pages are displayed.

    Regards,
    Peter

Viewing 1 replies (of 1 total)
  • The topic ‘Does 404 page work on non-existing uploaded content?’ is closed to new replies.