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
Actually the theme is found on that site:
https://ww.wp.xz.cn/themes/nature-one/
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