• Resolved Itam

    (@itamvanteeseling)


    Is it possible in the Affluent theme to show on the blog page the full articles, instead of only the excerpts? Changing this in the WordPress settings itself doesn’t seem to change anything.

Viewing 1 replies (of 1 total)
  • Hello @itamvanteeseling,

    Unfortunately, the theme does not have this option.
    You will have to create a child-theme and in functions.php to add the following code:
    //Displays the post content
    if(!function_exists('cpotheme_postpage_content')){
    function cpotheme_postpage_content(){
    the_content();
    if(is_singular('post')){
    cpotheme_post_pagination();
    }
    }
    }

    Hope it helps!

    TGIF,
    Mihaela

    • This reply was modified 7 years, 6 months ago by Miha.
Viewing 1 replies (of 1 total)
  • The topic ‘Show full content instead of excerpts on blog page’ is closed to new replies.