Viewing 4 replies - 1 through 4 (of 4 total)
  • I have the same issue.
    And on urgent deadline as well. ??

    I looked for the_excerpt and replaced it with the_content, but it did not work.
    are there any other files defining the_excerpt?

    Thanks in advance!

    Ah, I already fixed it but needed to write a filter to add my ACF fields to the_content.

    michaelisc:

    look for a directory called “content” inside the Inception theme directory in wp-content.
    open up “page.php” and “content.php”.
    look for the following:

    <div <?php hybrid_attr( 'entry-summary' ); ?>>
    			<?php the_excerpt(); ?>
    		</div><!-- .entry-summary -->

    change these to:

    <div <?php hybrid_attr( 'entry-summary' ); ?>>
    			<?php the_content(); ?>
    		</div><!-- .entry-summary -->

    and save the files back to your server.

    Additionally, if you use a child theme of Inception: add a folder called “content” inside your child theme folder and copy both files to this folder and change them like i just explained above.

    This should work.

    Thread Starter michaelisc

    (@michaelisc)

    Thanks so much! That did the trick. VERY helpful and quick!

    Thread Starter michaelisc

    (@michaelisc)

    Thread closed

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to make entire post show on main page’ is closed to new replies.