• jderosa3

    (@jderosa3)


    My about page does not load correctly… I have tried to comment things out on the about.php file that the template uses, but it seems to not make a difference.. obviously telling me that the about.php file for the theme doe not control what is being shown on the page.

    Creovino! Site

    If you goto my page and click the about tabe you will see that it displays search info and also cuts the about me post off… I just want the whole page to just be the post… and I am lost on where to edit this page. Thanks for any help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • It’s a really nice theme but it’d be easier for others to help you if you can provide the relevant codes.

    Thread Starter jderosa3

    (@jderosa3)

    I am not sure which code to give… below is the code from the about.php file form the theme… let me know if you see anything:

    <?php
    /*
    Template Name: About
    */
    ?>
    <?php get_header(); ?>
    <!-- set main-upper-content -->
    
    <div id="main-upper-content" class="container content-bg">
      <?php //include (TEMPLATEPATH . "/promo.php"); ?>
      <!-- set left col -->
      <div id="column-left" class="column left">
        <?php include(TEMPLATEPATH . "/includes/authorbox.php"); ?>
        <!-- set main-entry -->
        <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
        <div id="main-entry-container" class="main-entry">
          <?php //the title ?>
          <h1 class="page-title">
            <?php the_title(); ?>
          </h1>
          <?php the_content('Read more...'); ?>
        </div>
        <?php endwhile; endif; ?>
        <!-- end main-entry -->
      </div>
      <!-- end left col -->
      <!-- set right-col -->
      <div id="column-right" class="column right">
        <?php include ( getSidebarComponent( TEMPLATEPATH . "/includes/sidebar/", "searchform") ); ?>
        <?php include ( getSidebarComponent( TEMPLATEPATH . "/includes/sidebar/", "categories") ); ?>
        <?php include ( getSidebarComponent( TEMPLATEPATH . "/includes/sidebar/", "poll") ); ?>
        <?php include ( getSidebarComponent( TEMPLATEPATH . "/includes/sidebar/", "bookmarks") ); ?>
        <?php include ( getSidebarComponent( TEMPLATEPATH . "/includes/sidebar/", "blogfeeds") ); ?>
        <?php include ( getSidebarComponent( TEMPLATEPATH . "/includes/sidebar/", "blogmeta") ); ?>
        <?php include ( getSidebarComponent( TEMPLATEPATH . "/includes/sidebar/", "goodreading") ); ?>
        <?php include ( getSidebarComponent( TEMPLATEPATH . "/includes/sidebar/", "donate") ); ?>
      </div>
      <!-- end right-col -->
      <!-- set frame-grass -->
      <div id="frame-grass" class="container"></div>
      <!-- end frame-grass -->
      <!-- clear: this is required so columns force main-content to encapsulate the content -->
      <div class="clear"></div>
      <!-- set main-lower-content -->
      <div id="main-lower-content" class="container content-bg">
        <div id="column-container">
          <?php include ( getSidebarComponent( TEMPLATEPATH . "/includes/sidebar/", "recentposts") ); ?>
          <?php include ( getSidebarComponent( TEMPLATEPATH . "/includes/sidebar/", "sponsers") ); ?>
          <!-- clear -->
          <div class="clear"></div>
        </div>
        <!-- clear -->
        <div class="clear"></div>
      </div>
      <!-- end main-lower-content -->
    </div>
    <!-- end main-upper-content -->
    <?php get_footer(); ?>

    Thanks

    Thread Starter jderosa3

    (@jderosa3)

    anyone? I am lost here and have no idea why this is happening.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Problems with my about page… Need some help.’ is closed to new replies.