• Hi, I am using the theme darkpink-reloaded, however I would like this theme to show the full post everywhere.

    Currently you only see the full post on the homepage, or if you click on the post title in search results, or category lists. This is a problem as the links are not clear enough, and the format of my blog means that videos (which form the basis of the site) are being cut off.

    I guess I need to edit the template code, but I just can’t find wherre I need to be editing.

    For an example go to this page: https://funnybonevids.sandertann.com/category/comedy-1980s-now/

    Each post has some intro text, and then a video posted from youtube. I would like these posts to be fully expanded automatically so that when a user views a category (in this case the ‘1980’s to Now’ category) they get all the videos on the first page, without having to click the post title to get to them.

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Your theme is probably using the the_excerpt() rather than the the_content() on those pages.

    I am having the same issue with my mainpage but I don’t have the excerpt tag in my index.php. Do u know of any other places I can try to fix this ? My blog is at https://fierth.com/a and I am using the theme aspiremagazine. Thanks !

    <?php get_header(); ?>

    <!– BEGIN content –>
    <div id=”content”>
    <?php
    $tmp_query = $wp_query;
    query_posts(‘cat=’ . get_cat_ID(dp_settings(‘featured’)));
    if (have_posts()) :
    $first = true;
    while (have_posts()) : the_post();
    ob_start();
    ?>
    <li<?php if ($first) echo ‘ class=”first”‘; ?>>“><?php dp_attachment_image($post->ID, ‘full’, ‘alt=”‘ . $post->post_title . ‘”‘); ?>
    <?php
    $photos .= ob_get_clean();
    ob_start();
    ?>
    <li<?php if ($first) echo ‘ class=”first”‘; ?>>
    <h2>“><?php the_title(); ?></h2>
    <p><?php echo dp_clean($post->post_content, 300); ?></p>
    ” class=”readmore”>Read Full Story

    <?php
    $text .= ob_get_clean();
    $first = false;
    endwhile;
    endif;
    ?>

    <!– begin featured –>
    <div class=”featured”>
    <div class=”thumb”><div class=”b”>
    <ul class=”photo”>
    <?php echo $photos; ?>

    <ul class=”text”>
    <?php echo $text; ?>

    </div></div>
    </div>
    <!– end featured –>

    <?php
    $wp_query = $tmp_query;
    if (have_posts()) :
    while (have_posts()) : the_post();
    $arc_year = get_the_time(‘Y’);
    $arc_month = get_the_time(‘m’);
    $arc_day = get_the_time(‘d’);
    ?>

    <!– begin post –>
    <div class=”post”>
    <div class=”title”>
    <h2>“><?php the_title(); ?></h2>
    <p class=”details”>Posted by: <?php the_author_posts_link(); ?> on “><?php the_time(‘M jS, Y’) ?>
    </p>
    <p class=”comments”><?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?></p>
    </div>

    <div class=”l”>
    “><?php dp_attachment_image($post->ID, ‘thumbnail’, ‘alt=”‘ . $post->post_title . ‘”‘); ?>
    </div>
    <div class=”r”>
    <p><?php echo dp_clean($post->post_content, 300); ?></p>
    <p>“></p>
    </div>

    <div class=”meta”>
    <div class=”tags”>
    Tags: <?php the_tags(”); ?>
    </div>

    <div class=”undercat”>
    Filed Under: <?php the_category(‘, ‘) ?>
    </div>
    </div>

    </div>
    <!– end post –>

    <?php endwhile; else : ?>
    <div class=”notfound”>
    <h2>Not Found</h2>
    <p>Sorry, but you are looking for something that is not here.</p>
    </div>
    <?php endif; ?>

    <!– begin post navigation –>
    <?php if(function_exists(‘wp_page_numbers’)) { wp_page_numbers(); } ?>

    <!– END content –>

    </div>
    <?php get_sidebar();

    get_footer(); ?>

    eviljoker7075 I checked out your site, and you seem to have solved this.

    Could you let us know how?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Show Full Post Everywhere’ is closed to new replies.