• I would like to remove the gray box and the word “library” that appears at top of Books page. I’m sure there is code I can access to remove it, but don’t know where to find it.

    Note my site isn’t live yet…still building…

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • There are two ways so it depends on your comfort with template files or css.

    If you copy the archive-book.php from the plugin directory, and the link below, then put a copy in your theme directory.

    Here is the code…
    //Removes Title and Description on CPT Archive
    remove_action( ‘genesis_before_loop’, ‘genesis_do_cpt_archive_title_description’ );

    You can also do it was some .css
    .post-type-archive-books .archive-description.cpt-archive-description {
    display: none;
    }

    • This reply was modified 5 years, 6 months ago by Kim White.

    “, and the link below” I meant “ADD the code below”

    Thread Starter kcgillis

    (@kcgillis)

    Thanks Kim! I used the CSS option and it worked exactly as needed!
    Brilliant!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove word “Library” from Author Pro Books Widget’ is closed to new replies.