• Can anyone please help me to remove this “read more” […] thing from my blog so that I can have the full text showing. Pleases help!!!!

Viewing 14 replies - 1 through 14 (of 14 total)
  • Unless you provide a link to a page demonstrating the problem, no one will be able to offer much in the way of assistance.

    Thread Starter MF22904

    (@mf22904)

    https://foodnationny.com/category/bars/

    Or any one of the tabs in the category drop down. For some reason its is showing […] Orginally i wanted the “read more tag” and thats not even showing up. THanks!

    Your theme may be using <?php the_excerpt();?> instead of <?php the_content();?> in its category and tag template files. Try creating a child theme, editing the relevant template file(s) in your child and replacing <?php the_excerpt();?> with <?php the_content();?>

    Thread Starter MF22904

    (@mf22904)

    <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
    
                       <div class="post" id="post-<?php the_ID(); ?>">
    
                                <h2><a>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2><?php the_time('l, F jS, Y'); ?> 
    
                                <div class="entry">
    
                                         <?php the_content(); ?>
    
                                         <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
    
                                         <?php edit_post_link('edit', '<p>', '</p>'); ?>

    take a look!

    [Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser.]

    Where did you download this theme from?

    Thread Starter MF22904

    (@mf22904)

    I forget where, Its prolly outdated! huh?

    No idea but the url listed in the theme’s style.css no longer exists – which isn’t a good sign. So it might be a good idea to start looking for a newer theme anyway.

    Thread Starter MF22904

    (@mf22904)

    cant figure it out huh?

    From the code you posted above, no. I have no idea if that’s even the code from the correct template file.

    Thread Starter MF22904

    (@mf22904)

    [ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]

    <?php get_header(); ?>
    
    <?php include('pagemenu.php') ?>
    
    <!-- start: content -->
    <div id="content">
    
              <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
    
                       <div class="post" id="post-<?php the_ID(); ?>">
    
                                <h2><a>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2><?php the_time('l, F jS, Y'); ?>
    
                                <div class="entry">
    
                                         <?php the_content(); ?>
    
                                         <p class="postmetadata">
    <?php _e('Filed under:'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php  the_author(); ?>
    
    <!-- start: tag codes added -->
    
    <?php if (get_the_tags()) the_tags('Tags: ? ',' - ',' ? '); ?> 
    
    <!-- end: tag codes added -->
    
    <?php comments_popup_link('No Comments ?', '1 Comment ?', '% Comments ?'); ?> <?php edit_post_link('Edit', ' | ', ''); ?>
    				</p>                                       
    
                                </div>
    
                       </div>
    
              <?php endwhile; ?>
    
                       <div class="navigation">
    
                                 <!-- commented out code to use default next and previous page -->
    
                                 <?php posts_nav_link(/* 'in between ','before',' after' */); ?>
    
                       </div>
    
              <?php else : ?>
    
                       <div class="post" id="post-<?php the_ID(); ?>">  
    
                                <h2><?php _e('Not Found'); ?></h2>
    
                       </div> 
    
              <?php endif;?>
    
    </div>
    <!-- end: content -->
    
    </div>
    <!-- end: container -->
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    this is from my index.php.
    sorry about that!!!

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Can you post a link to your site where you are using that theme? Edit: Doh. Missed that, you already provided a link.

    Also, please use the code button when posting code…

    Did you actually check the category and tag template files as I originally suggested? You may well be looking in completely the wrong file.

    And please do not post new topics on this subject. All duplicated topics are deleted on sight.

    Thread Starter MF22904

    (@mf22904)

    https://foodnationny.com/category/breakfast/
    or any one of those tabs
    thank you

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘READ MORE TAG!’ is closed to new replies.