Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #193659

    Hello!

    My site is http://www.adw.cl

    I would like to kinow if its possible to deactivate the featured image showing on post page (single.php) because it could be redundant.
    Example: http://www.adw.cl/mapa-de-tiendas-en-chile/
    However, in other cases it is OK to be shown.
    Example:http://www.adw.cl/lost-in-translation/

    I see this behaviour is standard when you have a video in the post. The image is not shown.

    How can I deactivate the image on a single post?

    Thanks
    José

    #193695

    Hola José!

    Incluir una opción dentro del sistema para desactivar la imagen a mostrar solo en ciertos posts puede resultar demasiado complicado, me parece que la mejor solución seria usar CSS, aplica esta regla en los posts que no quieres que salga utilizando su ID:

    .postid-2849 .big-preview {
    display: none;
    }

    Si los posts que quieres que no salga son mayoritarios, puedes aplicar la regla por defecto y mostrarlo solo en los que especifiques:

    .big-preview {
    display: none;
    }
    .postid-2780 .big-preview {
    display: block;
    }

    Saludos,
    Josue

    #193702

    Hey jmaguirrei!

    You can add this on your custom.css or Quick CSS:

    .single .big-preview.single-big {
    display: none !important;
    }

    Best regards,
    Ismael

    #193878

    Thanks very much, it works fine!!
    Regards
    José

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Disable Featured Image on Posts’ is closed to new replies.