• I have so screwed myself, somehow. And I need help PDQ as folks are trying to find them from my FB page.

    I was trying to get the large featured image at the top of my posts to go away, and per someone’s suggestion I removed a few lines in content-single.php. That made all my full posts disappear from the live website (not the excerpts though, and the posts still exist in the post editor). https://www.colorstylepdx.com/blog/

    I reinstated those lines in the .php file but it has made no difference. I can’t see where the problem lies and don’t know CSS myself to discern issues.
    I sure hope someone can guide me out of this mess soon.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Verify that your content-single.php is the same as below

    <?php
    /**
     * Displays
     *
     * @package vantage
     * @since vantage 1.0
     * @license GPL 2.0
     */
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
    
    	<div class="entry-main">
    
    		<?php do_action('vantage_entry_main_top') ?>
    
    		<header class="entry-header">
    
    			<?php if( has_post_thumbnail() && siteorigin_setting('blog_featured_image') ): ?>
    				<div class="entry-thumbnail"><?php the_post_thumbnail( is_active_sidebar('sidebar-1') ? 'post-thumbnail' : 'vantage-thumbnail-no-sidebar' ) ?></div>
    			<?php endif; ?>
    
    			<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'vantage' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    
    			<?php if ( get_post_type() == 'post' ) : ?>
    				<div class="entry-meta">
    					<?php vantage_posted_on(); ?>
    				</div><!-- .entry-meta -->
    			<?php endif; ?>
    
    		</header><!-- .entry-header -->
    
    		<div class="entry-content">
    			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'vantage' ) ); ?>
    			<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'vantage' ), 'after' => '</div>' ) ); ?>
    		</div><!-- .entry-content -->
    
    		<?php if(vantage_get_post_categories()) : ?>
    			<div class="entry-categories">
    				<?php echo vantage_get_post_categories() ?>
    			</div>
    		<?php endif; ?>
    
    		<?php do_action('vantage_entry_main_bottom') ?>
    
    	</div>
    
    </article><!-- #post-<?php the_ID(); ?> -->
    Thread Starter joiede

    (@joiede)

    YES!! Thank you so much!!
    Whatever was wrong with the file (it looked the same to me…) your text fixed the disappearing blog post problem. Which happened because I was trying to fix the problem below.

    How to have a little featured image that shows up next to my blog excerpts that does NOT dominate the top of the post itself? I can have the extra image (big) at the top of my post and a little one by the excerpt. Or.. I can set NO featured image which gives me no image at all associated with the excerpt (or FB posts). Both unacceptable.

    Have you any ideas about this?

    I’m not too sure about the featured images – haven’t fooled around with it too much. What do you mean when you say it dominates the post?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help!! Blog posts disappeared in Vantage Premium!’ is closed to new replies.