• I’ve figured this out on every other website, but this theme I am clueless on. Here’s the code from indexloop.php

    <?php
    /**
    * The loop for home page (index)
    *
    * @package wplook
    * @subpackage DailyPost
    * @since DailyPost 1.0
    */
    ?>

    <div id=”content”>

    <?php if ( is_home() || is_front_page() || is_404()) {

    } else {
    ?><?php thematic_doctitle();?>
    <?php } ?>
    <?php if ( have_posts() ) : ?>
    <?php /* Start the Loop */ ?>
    <?php while ( have_posts() ) : the_post(); ?>
    <?php get_template_part( ‘content’, get_post_format() ); ?>
    <?php endwhile; ?>
    <?php wplook_content_nav( ‘nav-below’ ); ?>
    <?php else : ?>
    <article id=”post-0″ class=”post no-results not-found”>
    <div class=”postformat”><div class=”format-icon”></div></div>

    <header class=”entry-header”><h1 class=”entry-title”><?php _e( ‘Nothing Found’, ‘wplook’ ); ?></h1></header><!– .entry-header –>
    <div class=”entry-content”>
    <p><?php _e( ‘Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.’, ‘wplook’ ); ?></p>
    <?php get_search_form(); ?>
    </div><!– .entry-content –>
    </article><!– #post-0 –>
    <?php endif; ?>
    </div><!– #content –>
    <div class=”clear”></div>

Viewing 6 replies - 1 through 6 (of 6 total)
  • My apologies, I misunderstood your question.

    try replacing this part:

    <?php get_template_part( 'content', get_post_format() ); ?>

    with this:
    <?php the_title(); ?>

    Thread Starter WRevolves

    (@wrevolves)

    Found content-aside and it looks like it’s in here. I’ll play with it then come back and mark it resolved if it works.

    Thanks!

    Thread Starter WRevolves

    (@wrevolves)

    Tried that earlier and it made all the posts display in an unclickable chunk. Very odd.

    Thread Starter WRevolves

    (@wrevolves)

    Code of content-aside.php

    <?php
    /**
    * The default template for displaying content
    * @package wplook
    * @subpackage DailyPost
    * @since DailyPost 1.0
    */
    ?>
    <?php if ( is_single() ) {
    ?>

    <article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
    <div class=”postformat”><div class=”format-icon”></div></div>

    <span class=”date-i fleft”>
    ” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘wplook’ ), the_title_attribute( ‘echo=0’ ) ); ?>” rel=”nofollow”><?php the_time(‘F jS, Y’) ?>
    </span>
    <?php edit_post_link( __( ‘Edit’, ‘wplook’ ), ‘<span class=”edit-i”>’, ‘</span>’ ); ?>

    <div class=”entry-content”>
    <?php the_content( __( ‘Continue reading <span class=”meta-nav”>→</span>’, ‘wplook’ ) ); ?>
    <?php wp_link_pages( array( ‘before’ => ‘<div class=”clear”></div><div class=”page-link”><span>’ . __( ‘Pages:’, ‘wplook’ ) . ‘</span>’, ‘after’ => ‘</div>’ ) ); ?>
    <!– .entry-content –>
    <div class=”clear”></div>
    <footer class=”entry-utility”>
    <div class=”alignright”>
    <?php wplook_prev_next(); ?>
    </div>
    <div class=”alignleft”>
    <?php wplook_get_author(); ?>
    <?php wplook_get_category(); ?>
    <?php wplook_get_tag_list(); ?>
    </div><div class=”clear”></div>
    </footer> </div>
    <!– .entry-content –>
    </article>
    <?php comments_template( ”, true ); ?>

    <?php } else { ?>

    <article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
    <div class=”postformat”>
    <div class=”format-icon”></div>
    </div>

    <span class=”date-i fleft”>” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘wplook’ ), the_title_attribute( ‘echo=0’ ) ); ?>” ><?php the_time(‘F jS, Y’) ?></span>
    <?php edit_post_link( __( ‘Edit’, ‘wplook’ ), ‘<span class=”edit-i”>’, ‘</span>’ ); ?>
    <div class=”entry-content”>
    <?php the_content(”); ?>

    <!– .entry-content –>
    <div class=”clear”></div>

    <footer class=”read-more”>“><?php _e(‘Read More’, ‘wplook’); ?><span class=”meta-nav”>→</span></footer>
    </div>
    <!– .entry-content –>
    </article>
    <?php } ?>

    Thread Starter WRevolves

    (@wrevolves)

    Not sure what to edit on it, if that is what I need to do like earlier suggested.

    I would have to look at both your website and the theme you’re working with in order to be helpful at this point. I may be able to figure out what is happening and where, but it usually requires that I look at the theme files for a time.

    If you can give me the name of the theme and the URL to your website (and perhaps tell me what changes you wanted on which pages), then maybe I can be of further help. If not, I hope you successfully resolve these issues.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Show Only Post Titles on Homepage’ is closed to new replies.