• Hi, I would really appreciate some help fixing an annoying problem, with double thumbnail pictures showing. On my page Artbyshe.dk – I have 3 sections (menus). One of them is called ThoughtsbyMe where I post short stories. When I post a short story, I add a picture in the text (left aligned with text). This picture is shown as a thumbnail, along with parts of the text on the ThoughtsbyMe page, when opening. When you click (to read more) the thumbnail appears double, and it doesn’t look good. How can I prevent this? It was not always like this, I think it went wrong after an automatic update. I am not at all very experienced with WordPress, so please be very specific in your explanations how to solve it ??

    If you wish to see an example please have a look here:
    https://artbyshe.dk/paa-hver-sine-vinger/

    The theme is Lucid if it is important – I hope you can help. BIG thanks.
    Heidi

Viewing 4 replies - 1 through 4 (of 4 total)
  • Can you post these theme’s single.php file code here?

    Thread Starter Hlskov

    (@hlskov)

    Is this what you mean?

    <?php get_header(); ?>

    <?php $et_full_post = get_post_meta( $post->ID, ‘_et_full_post’, true ); ?>

    <div id=”content-area” class=”clearfix<?php if ( ‘on’ == $et_full_post ) echo ‘ fullwidth’; ?>”>
    <div id=”left-area”>
    <?php get_template_part(‘includes/breadcrumbs’, ‘single’); ?>
    <?php get_template_part(‘loop’, ‘single’); ?>
    </div> <!– end #left_area –>

    <?php if ( ‘on’ != $et_full_post ) get_sidebar(); ?>
    </div> <!– end #content-area –>

    <?php get_footer(); ?>

    Hm.. Its hard to solve without entering theme file. Their is another way by solving this using css. Add

    disply: none

    to your style.css. Here is the final code:

    .entry .post-thumbnail {
      position: relative;
      line-height: 0;
      display: none;
    }
    Thread Starter Hlskov

    (@hlskov)

    Hey Thanks a million it worked:) I am really glad!! have a good day. ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘double thumbnail picture when posting’ is closed to new replies.