• Resolved bgoldfeder

    (@bgoldfeder)


    domain.com/shows is a page that we use and the plugin is overwriting that page with an archive show list. Upon looking in the settings where the archive settings are, none of the settings are listed as storing it in the shows slug

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tony Zeoli

    (@tonyzeoli)

    Sorry for the delayed reply. Holidays took precendent and have been playing catch up.

    Okay, so you already use the slow, “/shows” and we overwrite that like you see on our demo site: https://demo.radiostation.pro/shows/.

    I have asked Tony Hayes, our Lead Dev, to reach out here on the thread and direct you to a solution.

    First, did you turn off “Automatic Display”? for the Shows Archives Pae?

    Second, did you create a new page and use the drop down to target that page with the Shows Archive?

    Plugin Contributor Tony Hayes

    (@majick)

    WordPress does this by default when a custom post type is registered with has_archive set, which Radio Station does. You can change this behaviour using a filter:

    add_filter( 'radio_station_post_type_show', 'custom_show_post_type_filter' );
    function custom_show_post_type_filter( $post_type ) {
    $post_type['has_archive'] = false;
    return $post_type;
    }

    Alternatively if you do want the show archive somewhere else just give it another slug instead of the default 'shows'

    Plugin Author Tony Zeoli

    (@tonyzeoli)

    Looks like this issue has been resolved. Closing for now. Please open another ticket if this issue persists.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Shows Slug Bug’ is closed to new replies.