Viewing 2 replies - 1 through 2 (of 2 total)
  • Meiji

    (@meiji_lythtis)

    Hi! Some themes have those options activated somewhere, if you can’t find it, you have two choices:

    – Look for the code: the_excerpt(); in one of your php files and comment it this way: //the_excerpt();

    That could inside of index.php, loop.php, content.php and since it shows below the page title, functions.php. You should be careful though since you might do this for excerpts in posts and others as well.

    – If you don’t want to mess around with the code, you just could add this in a custom CSS (using a plugin like Simple Custom CSS), it wouldn’t be the best solution but it will work:

    #page-header .excerpt {
    color: #dce1e8;
    text-align: center;
    display: none;
    }

    Thread Starter markshannonsf

    (@markshannonsf)

    Thank you for the help. I will try that.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove excerpt from page on current theme’ is closed to new replies.