Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Try using [ic_add_posts post_type=’post_type’] and putting sticky in the post type.

    Thread Starter RogersPTA

    (@rogerspta)

    Aha! i fixed this by:

    1. The theme option mentioned above (Appearance> Theme Options> Layout)
    2. Editing this file: posts-in-page/posts_loop_template.php, and this line of code in that file:

    <!-- This is the output of the EXCERPT -->
    	<div class="entry-summary">
    		<?php the_content(); ?>

    Originally, “the_content()” was “the excerpt()”

    Resolved!

    Thread Starter RogersPTA

    (@rogerspta)

    I found a layout option in “Theme Options” that fixed the problem on the News page. The problem remains so far on the home though.

    Also, I’ve noticed that topics in the theme specific forums take a long time to get answered and that general help should be adequate for the time being.

    Thread Starter RogersPTA

    (@rogerspta)

    I found it, the file was called Main Index Template and so I over looked it at first.

    Thread Starter RogersPTA

    (@rogerspta)

    Thanks, I actually found this quickly after posting. The file was called Main Index Template and so I skipped over it. Resolved!

    Thread Starter RogersPTA

    (@rogerspta)

    My code in the loop looks like this:

    <?php /* Start the Loop */ ?>
    				<?php while ( have_posts() ) : the_post(); ?>
    
    					<?php get_template_part( 'content', get_post_format() ); ?>
    
    				<?php endwhile; ?>
    
    				<?php catchevolution_content_nav( 'nav-below' ); ?>
    
    			<?php else : ?>
    
    				<article id="post-0" class="post no-results not-found">
    					<header class="entry-header">
    						<h1 class="entry-title"><?php _e( 'Nothing Found', 'catchevolution' ); ?></h1>
    					</header><!-- .entry-header -->
    
    					<div class="entry-content">
    						<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'catchevolution' ); ?></p>
    						<?php get_search_form(); ?>
    					</div><!-- .entry-content -->
    				</article><!-- #post-0 -->
    
    			<?php endif; ?>
    
    			</div><!-- #content -->
    		</div><!-- #primary -->

    Where do I put “the_content()” and what goes in the parentheses of “the_content()”?

    In the pages tab of your WordPress dashboard, create the page you want to be a child. Then on the right hand side, under Page Attributes, choose the parent page. Then save/update your page.

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