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

    (@stevejburge)

    Hi @alfredomichelena

    Thanks for using PublishPress Authors.

    Sorry, I’m not clear what you’re referring to on your site.

    Please follow up by opening a support ticket on our site. Include screenshots to show what you’re asking about.

    Thread Starter alfredomichelena

    (@alfredomichelena)

    Sorry, your Plugin ( PublishPress Authors) was deactivated. Now is already activated. So if you can look at the bottom of my page (enpaiszeta.net), you will see a kind of author box by itself. I do not want it there, and I do not know how to erase it. For the rest your creation is awesome, very good indeed.

    Plugin Author Steve Burge

    (@stevejburge)

    Hi @alfredomichelena

    You can use a filter in your theme’s functions.php to disable it on specific pages.

    For example, if the Page ID is 45:

    add_filter(‘pp_multiple_authors_filter_should_display_author_box’, function($display) {
    $pageId = get_the_ID();
    if (45 === $pageId) {
    return false;
    }
    return $display;
    });

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘unwanted line of “author” at the botton of my page,’ is closed to new replies.