Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter earthbefree

    (@earthbefree)

    Fantastic – removing the leading slash fixed the issue. I appreciate your assistance here, Nick! ??

    Many thanks,
    Aimee

    Thread Starter earthbefree

    (@earthbefree)

    Ok – thanks Nick! ??

    I added this to my functions file, refreshed the permalinks, cleared the cache and the slugs are still showing up the same. Clearly some part of it is wrong ?? Any hints? Thanks so much!

     //* Genesis author-pro plugin change permalinks to gfm-press
    
    add_filter( 'genesis_author_pro_archive_slug', 'custom_author_pro_archive_slug' );
    function custom_author_pro_archive_slug() {
       return '/gfm-press/books';
    }
    
    add_filter( 'genesis_author_pro_author_slug', 'custom_author_pro_author_slug' );
    function custom_author_pro_author_slug() {
       return '/gfm-press/book-author';
    }
    
    add_filter( 'genesis_author_pro_book_slug', 'custom_author_pro_book_slug' );
    function custom_author_pro_book_slug() {
       return '/gfm-press/book';
    }
    
    add_filter( 'genesis_author_pro_series_slug', 'custom_author_pro_series_slug' );
    function custom_author_pro_series_slug() {
       return '/gfm-press/series';
    }
    
    add_filter( 'genesis_author_pro_tag_slug', 'custom_author_pro_tag_slug' );
    function custom_author_pro_tag_slug() {
       return '/gfm-press/book-tag';
    }
    

    I have this same issue – will post on separate thread.

Viewing 3 replies - 1 through 3 (of 3 total)