• Resolved ragulin

    (@ragulin)


    Hi, Ive got a problem. I am using adv. Slider. THis plugin needs thumbnails, but I dont want to have thumbnails visible in the postspage

    Can I do it somehow? Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey there ragulin,

    Hope you’re well today!

    You should be able to remove image from you single post pages with some custom CSS. Please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:

    http://wordpress.org/plugins/simple-custom-css

    .single .blog-image img.imagerct {
      display: none;
    }

    This should hide the image only on your single post pages. If the code doesn’t work please keep it added and post link to your site so I can take a look 🙂

    Best regards,
    Bojan

    Thread Starter ragulin

    (@ragulin)

    Hey there ragulin,

    Hope you’re well today!

    You should be able to remove image from you single post pages with some custom CSS. Please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:

    http://wordpress.org/plugins/simple-custom-css

    .single .blog-image img.imagerct {
    display: none;
    }
    This should hide the image only on your single post pages. If the code doesn’t work please keep it added and post link to your site so I can take a look 🙂

    Best regards,
    Bojan

    Hi, thanks for reply. This perfectly works, the thumbnail is not visible after opening the post. But I do not want to have it visible on the main page with new posts as well, can I do it somehow? THank you

    Hey again ragulin,

    I assumed that you want them only removed from single post pages. Please try replacing the code with the following:

    .blog-image {
      display: none;
    }

    This should remove featured images from both single and blog pages.

    Best regards,
    Bojan

    Thread Starter ragulin

    (@ragulin)

    thanks for help, its working now

    Glad that helped 🙂

    Best regards,
    Bojan

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Removing thumbnail from post’ is closed to new replies.