Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi, @stephenpasquini.

    You can change the books slug by adding a filter to your theme’s functions.php file:

    add_filter( 'genesis_author_pro_archive_slug', 'custom_author_pro_archive_slug' );
    function custom_author_pro_archive_slug() {
        return 'my-books';
    }

    If you’d like to change ‘book’ for single book listings, you can use this code:

    add_filter( 'genesis_author_pro_book_slug', 'custom_author_pro_book_slug' );
    function custom_author_pro_book_slug() {
        return 'a-book';
    }

    You’ll need to click “Save Changes” at the bottom of Settings → Permalinks after making these changes.

    Thread Starter Stephen

    (@stephenpasquini)

    You rock! Worked like a charm and I cannot thank you enough!!!

    Stephen

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change Page For Book Archive’ is closed to new replies.