• Hey!

    I was hoping to find an answer here.

    I don’t want the selected featured image inside of my posts – either on the home page or the actual post page.

    Is it possible to remove it? I just want it for the thumbnail on “other posts you may like” section.

    Thanks!

Viewing 12 replies - 16 through 27 (of 27 total)
  • Well, I’ll need the style in place and at least one post which has a featured image to try and figure out what’s going on.

    Ok. Is there a way to publish a post but not have it public?

    Create a very small image that’s 1×1 px in size and white, add it as featured to a post and let me know which post it is. Also make sure the style is in place.

    Check out this post:

    Featured image added with css coding you recommended.

    https://nycplugged.com/121-2/

    This happens because you have added wrong styles in the stylesheet.

    .entry-comments-no {
        display: none; }
    }
    
    .entry-featured {
    	display: none; }
    }

    these are broken, on both of them there are extra closing curly brackets.

    It worked thanks!

    But when I try to social share it doesnt pull the image or title…

    Ok its pulling the title when I share to Facebook, but not Twitter. Both are not showing the image…

    Also what if I wanted the images to show up where it says you may also like…

    I was thinking maybe I should just use:
    .home .entry-featured { display: none; }
    .single-post .entry-featured { display: none; }

    Would that be correct?

    Ok, its looks like its pulling the image, at least one post, so I will give it time to maybe work for the others.

    But is there a way to still have it show under each post where it says “You May Also Like”

    Also can the title be pulled for Twitter Shares and also automatically add my Twitter name to the tweet.

    Disregard all previous posts

    Is there a way to still have the featured iamge show under each post where it says “You May Also Like”

    Also can the title be pulled for Twitter Shares and also automatically add my Twitter name to the tweet.

    Replace any CSS related with the featured images with this

    .entry-featured {display:none;}
    .widget_ci-latest-posts .entry-featured, .entry-related .entry-featured {display: block;}

    The Twitter share button can’t pull any other information at the moment.

    It worked thankss!!!

Viewing 12 replies - 16 through 27 (of 27 total)
  • The topic ‘Removing Featured Photos From Posts’ is closed to new replies.