Viewing 7 replies - 1 through 7 (of 7 total)
  • It sounds like you want the full article to display on either the category/archive sections or on the homepage. If so, then look in your theme files (home.php, category.php and/or archive.php) for ‘the_excerpt‘ and replace it with ‘the_content‘.

    Please Note: always make a backup of your existing work before making modifications!

    Thread Starter veranopage

    (@veranopage)

    There is no excerpt code only…

    <div class="post_content">
    							<?php the_content(__('READ THE FULL ARTICLE >>',

    Will you provide a link pls?

    Thread Starter veranopage

    (@veranopage)

    resolved

    Thread Starter veranopage

    (@veranopage)

    Please see below post.

    Thread Starter veranopage

    (@veranopage)

    Its not resolved, please view the following, what do I change to make sure that it doesnt how FULL post?

    <?php get_header(); ?>
    <?php
    	$count = 0;
    ?>
    
    <?php if (have_posts()) : ?>
    	<div class="fullbox_excerpt">
    		<div class="fullbox_content">
    			<h3>
    				<?php single_cat_title(); ?>
    			</h3>
    
    			<?php while (have_posts()) : the_post(); ?>
    
    				<?php
    				if($count > 0)
    				{
    				?>
    				<div class="excerpt_separator"></div>
    				<?php
    				}
    				?>
    
    				<div class="excerpt_meta" id="post-<?php the_ID(); ?>">
    					<div class="excerpt_desc">
    						<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
    						<?php cutstr($post->post_content, 500); ?>
    					</div>
    					<div class="excerpt_more"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="more-link"><?php _e('READ THE FULL ARTICLE >>', 'theme'); ?></a> </div>
    				</div>
    
    				<?php $count++; ?>
    			<?php endwhile; ?>
    
    		</div>
    		<div class="fullbox_footer"></div>
    	</div>
    	<div id="post-navigator">
    	<?php if (function_exists('wp_pagenavi')) : ?>
    	<?php wp_pagenavi(); ?>
    	<?php else : ?>
    	<div class="alignright"><?php previous_posts_link(__('Newer Entries &raquo;', 'theme')); ?></div>
    	<div class="alignleft"><?php next_posts_link(__('&laquo; Older Entries', 'theme')); ?></div>
    	<?php endif; ?>
    	</div>
    <?php else: ?>
    	<div class="fullbox">
    		<div class="fullbox_header"></div>
    		<div class="post_message"><?php _e('Sorry. There are no post available for selected category.', 'theme'); ?></div>
    		<div class="fullbox_footer"></div>
    	</div>
    <?php endif; ?>
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    Also important to note that I removed the name of the theme, and out in the text “theme”, as to not draw the focus off, because I dont believe this to be a theme issue.

    Thread Starter veranopage

    (@veranopage)

    I think the answer is towards the bottom of the code but I cant wrap my head around it.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘how to allow posts to how FULL content and not preview’ is closed to new replies.