• My developer did something that abbreviates the home page here: http://goo.gl/FFIqC

    That section of text in the yellow area.. that’s what I’m trying to figure out how to not abbreviate.

    Here’s what I’ve figured out:

    • The theme was based on Twenty Eleven
    • The section that pulls the text seems to be in a file called “home-page.php”
    • The part of that page that displays it seems to be <?php get_template_part( 'content', 'homepage' ); ?> (full code below):
    <div id="primary">
      <div id="content-shadow">
        <div id="homecontent" role="main">
          <?php while ( have_posts() ) : the_post(); ?>
          <?php get_template_part( 'content', 'homepage' ); ?>
          <?php //comments_template( '', true ); ?>
          <?php endwhile; // end of the loop. ?>
          <div id="address" role="main">
            <?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
            <div id="first" class="widget-area" role="complementary">
              <?php dynamic_sidebar( 'sidebar-2' ); ?>
            </div>
            <!-- #first .widget-area -->
            <?php endif; ?>
          </div>
          <!-- #address -->

    Can anyone help me?

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Abbreviated post on the front page of Twenty Eleven’ is closed to new replies.