• Resolved acetatsujin

    (@acetatsujin)


    This is the problem — https://www.otakixus.com/blog/?cat=1
    In any of the pages that you click ontop it will always shrink the posts and have them sealed like that. I really hate that and I wanna get rid of it.

    This is what I want it to look like (my front page) — https://www.otakixus.com/blog/

    I searched for a plugin for two hours. I can’t seem to find anything related to this. Is there a plugin’ for it, or do I have to get rid of manually? Help would really be appreciated. Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • This is a theming issue, and though a plugin could to it, the easiest way would be to tweak your theme. Basically your theme’s archive page (archive.php) is displaying the_excerpt rather than the_content.

    Open up your theme’s archive.php in the WordPress’s theme editor (or a text editor, doesn’t matter) and look for something like this:

    <div class="entry">
    	<?php the_excerpt() ?>
    </div>

    and change it to:

    <div class="entry">
    	<?php the_content() ?>
    </div>

    That should do it for you.

    Thread Starter acetatsujin

    (@acetatsujin)

    Didn’t work, I searched for “excerpt” and changed it to “content” … nothing worked, so I changed it back. The code in archieve.php is here:-

    <?php get_header(); ?>
    <?php $options = get_option('mc_options'); ?>
      <div id="contents" class="clearfix">
    
       <div id="left_col">
        <div class="content_noside">
    <?php if (have_posts()) : ?>
    
    <div id="headline">
    <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
     <?php if (is_category()) { ?>
     <p><?php printf(__('Archive for the ‘ %s ’ Category', 'monochrome'), single_cat_title('', false)); ?></p>
    
     <?php } elseif( is_tag() ) { ?>
     <p><?php printf(__('Posts Tagged ‘ %s ’', 'monochrome'), single_tag_title('', false) ); ?></p>
    
     <?php } elseif (is_day()) { ?>
     <p><?php printf(__('Archive for %s', 'monochrome'), get_the_time(__('F jS, Y', 'monochrome'))); ?></p>
    
     <?php } elseif (is_month()) { ?>
     <p><?php printf(__('Archive for %s', 'monochrome'), get_the_time(__('F, Y', 'monochrome'))); ?></p>
    
     <?php } elseif (is_year()) { ?>
     <p><?php printf(__('Archive for %s', 'monochrome'), get_the_time(__('Y', 'monochrome'))); ?></p>
    
     <?php } elseif (is_author()) { ?>
     <p><?php _e('Author Archive', 'monochrome'); ?></p>
    
     <?php } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
     <p><?php _e('Blog Archives', 'monochrome'); ?></p>
    <?php } ?>
    </div>
    
    <?php while ( have_posts() ) : the_post(); ?>
    
        <div class="archive_contents">
         <h2><?php the_title(); ?></h2>
         <ul class="archive_meta">
          <li><?php the_time(__('F jS, Y', 'monochrome')) ?></li>
          <li><?php _e('Posted in ','monochrome'); ?><?php the_category(' . '); ?></li>
          <?php if ($options['author']) : ?><li><?php _e('By ','monochrome'); ?><?php the_author_posts_link(); ?></li><?php endif; ?>
          <?php edit_post_link(__('[ EDIT ]', 'monochrome'), '<li class="post-edit">', '</li>' ); ?>
         </ul>
         <p><a href="<?php the_permalink() ?>"><?php the_excerpt_rss(); ?><span class="read-more"><?php _e('[ READ MORE ]', 'monochrome'); ?></span></a></p>
        </div>
    
    <?php endwhile; else: ?>
        <div class="archive_contents">
         <p><?php _e("Sorry, but you are looking for something that isn't here.","monochrome"); ?></p>
        </div>
    <?php endif; ?>
    
        <?php include('navigation.php'); ?>
        </div><!-- #content_noside end -->
    
       </div><!-- #left_col end -->
    
       <?php get_sidebar(); ?>
    
      </div><!-- #contents end -->
    
      <div id="footer">
    <?php get_footer(); ?>

    If you change

    <?php the_excerpt_rss(); ?>

    (why’s that being used there anyway?) to

    <?php the_content()?>

    It should work. If it fails, I’m completely useless.

    Thread Starter acetatsujin

    (@acetatsujin)

    Yes! It works! With a new problem. Gah, should I just take this to the right thread?

    The problem now is its linking the entire content without the title to go to the comment page (Any link from above except HOME). On the main page (HOME) you have to click on the subject/title to go in and see the comments. Looks weird and odd. I want it to be the same as HOME.

    Thread Starter acetatsujin

    (@acetatsujin)

    I got it working. Thanks. I just gotta fix one small thing.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Show all Posts / No more “read here” or “read more”’ is closed to new replies.