• I read that if I want to have the full post shown rather than just an excerpt, I just need to replace the_excerpt() with the_content() in the index.php file. The problem is my index.php file doesn’t contain the_excerpt().

    I’m using the nature-one theme. Can someone please help? Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator t-p

    (@t-p)

    I’m using the nature-one theme.

    – Your currently used theme is not one of the supported themes from https://ww.wp.xz.cn/themes/:
    https://ww.wp.xz.cn/themes/search/nature-one/

    – Please contact the developer directly for support with your question. You’ll be more likely to find a good answer from them, for they have the access to its code. Forum volunteers are not given access to commercial products, so they would not know why your commercial theme or plugin is not working properly. The vendors are responsible for supporting their commercial product. These forums are for free themes available in the WordPress theme directory at ww.wp.xz.cn/themes/. See http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products

    Thread Starter halcXVl

    (@halcxvl)

    Actually the theme is found on that site:
    https://ww.wp.xz.cn/themes/nature-one/

    Thread Starter halcXVl

    (@halcxvl)

    I guess I’ll try to contact SKTThemes.

    for that theme, please post directly in https://ww.wp.xz.cn/support/theme/nature-one#postform

    index.php calls a template part:

    get_template_part( 'content', get_post_format() );

    i.e. you need to check content.php (and possibly the other content-{???}.php files) within a child theme;

    copy of the relevant section in content.php:

    <?php if ( is_search() || !is_single() ) : // Only display Excerpts for Search ?>
                <div class="entry-summary">
                    <?php echo skt_natureone_content(40); ?>
                    <a class="read-more" href="<?php the_permalink(); ?>"><?php _e('Read More »','nature-one'); ?></a>
                </div><!-- .entry-summary -->
            <?php else : ?>
                <div class="entry-content">
                    <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'nature-one' ) ); ?>
                    <?php
                        wp_link_pages( array(
                            'before' => '<div class="page-links">' . __( 'Pages:', 'nature-one' ),
                            'after'  => '</div>',
                        ) );
                    ?>
                </div><!-- .entry-content -->
            <?php endif; ?>

    [continued at https://ww.wp.xz.cn/support/topic/show-full-posts?replies=1%5D

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Showing full posts’ is closed to new replies.