Viewing 3 replies - 1 through 3 (of 3 total)
  • Michael

    (@alchymyth)

    double-check the theme options;

    if this does not help, you might need to edit /functions/wordsmith-template-tags.php, and change here:

    function wordsmith_the_content() {
    
    	$is_singular = is_singular();
    
    	// Show page links only in single post/page views
    	$page_links = $is_singular ? wordsmith_get_entry_pages() : '';
    
    	if ( $is_singular || wordsmith_get_options( 'display_full_posts' ) ) {
    		echo $page_links;
    		the_content();
    		echo $page_links;
    	}
    	else {
    		the_excerpt();
    	}
    }

    adapt the conditional statement in this line: if ( $is_singular || wordsmith_get_options( 'display_full_posts' ) ) {

    Theme Author Victor Sarabia

    (@victor-sarabia)

    Hi loothi,

    Unfortunately, right now the theme does not have an option to show full posts on the front page. (It is a theme preference)

    I had originally planned to make that option available in a future update. And now that someone has requested it, I’ll make sure to include it in the next update.

    Sorry for any inconvenience.
    I’m glad you liked the theme.

    Hi Victor,

    Put me down as another person who loves your Wordsmith theme, and would like to have the ‘show full posts’ option.

    Also, does the theme allow images, such as pictures? I added a picture in my post, but it doesn’t show up, though it does in other themes..

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Make front page show full posts?’ is closed to new replies.