• It seems recently, our archive pages at /series/ became /book-series/ recently. I can’t find any notes of this in the changelog, but I found the slug construct in the Genesis_Author_Pro_CPT class file.

    Was this an update with the latest release a month ago? Can we manually change this back anywhere in settings? We have too many tracked redirects to these pages to go back and update them all or create 301 redirects for all of them. If I change the slug construct in the plugin file, we’ll risk an overwrite in a future update.

Viewing 1 replies (of 1 total)
  • Hi, @cotelouis!

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

    add_filter( 'genesis_author_pro_series_slug', 'custom_author_pro_slug' );
    function custom_author_pro_slug() {
        return 'series';
    }

    You’ll need to resave permalinks at Settings → Permalinks after making this change.

    (The slug was changed here – sorry not to have mentioned it in the changelog…)

    • This reply was modified 7 years, 10 months ago by Nick C.
Viewing 1 replies (of 1 total)
  • The topic ‘series became book-series?’ is closed to new replies.