• I’ve just installed the plugin but I’ve encountered a problem where the excerpt of the oldest post on a page is being duplicated where the footer should be.

    I noticed someone else reported the same issue a couple of years ago but there was no solution on the post.

    Can you please help?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WPKube

    (@wpkube)

    Hi @mallo82

    It’s a paid theme so we can’t set it up on our installation and figure out what’s going on.

    Do you have some experience with editing plugin files? If you do I could let you know what to change so we can test it out that way.

    Thread Starter mallo82

    (@mallo82)

    Not really but I’m a quick learner and happy to give it a try.

    Plugin Author WPKube

    (@wpkube)

    The problem is that a single thing edited out of place could cause a “fatal error” and bring the site down.

    So I wouldn’t suggest doing it via the file editor in the WP admin. Only if you can do it via an FTP client or the file editor in your hosting control panel. That way you can revert back the change that caused the issue.

    That being said, the change I’d like to try is in wp-content/plugins/advanced-excerpt/class/advanced-excerpt.php

    On lines 111-113 you’ll see:

     if ( function_exists( 'is_bbpress' ) && is_bbpress() ) {
        return;
    }

    Just after that part add this:

    if ( ! is_main_query() ) {
        return;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Oldest post excerpt repeated in footer’ is closed to new replies.