Support

Account

Home Forums General Issues Filtering issues which remove images and filters on page Reply To: Filtering issues which remove images and filters on page

  • Unfortunately it is returning the same template for both the standard and the results page – see the URL shown at the bottom.

    https://apexcinemas.andrewcourtney.co.uk/films/
    https://apexcinemas.andrewcourtney.co.uk/films/?film_genre=Action

    By the way, if it helps, below are the post type details I entered for “film”/”films” – may be useful?

    // Film Post Type
    register_post_type(‘film’, array(
    ‘show_in_rest’ => true,
    ‘supports’ => array(‘title’, ‘excerpt’),
    ‘rewrite’ => array(‘slug’ => ‘films’),
    ‘has_archive’ => true,
    ‘public’ => true,
    ‘labels’ => array(
    ‘name’ => ‘Films’,
    ‘add_new_item’ => “Add New Film”,
    ‘edit_item’ => “Edit Film”,
    ‘all_items’ => “View All Films”,
    ‘singular_name’ => ‘Film’
    ),
    ‘menu_icon’ => ‘dashicons-editor-video’
    ));