Finally I found a solution. Maybe it could help someone else.
In my archive-filme.php I just used the basic loop:
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post();
get_template_part( 'content', get_post_format() );
endwhile; ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
Now I use a page with an custom-template. In the content-div I placed
include get_bloginfo( 'url' )'/filme/?' . urldecode( $_SERVER["QUERY_STRING"] )
The query_string, cause I need to pass some GET-variables to the page.
For the ajax solution I used the checkboxes provided by Query Multiple Taxonomies and loaded the archive-filme.php into my content-div, again with the get variables.
I’m really not sure if this weird text can help someone, but I hope so.
Related Posts:
- Custom Post Type Settings page, choose page to display archive
- Updating custom post meta with ajax
- WordPress post sorting with AJAX
- Loading custom page template via plugin
- Prevent reload confirmation after AJAX save
- How to filter post data with AJAX on page?
- Debug whats going on inside a function called from AJAX
- Is there an easy way to AJAX-ify saving of post?
- Ajax filter with custom taxonomies
- Filter posts with ajax form and checkboxes
- Pagination problems with multiple custom post type archive pages
- How to use wp_mail in CPT page
- WordPress custom post type archive with description
- CPT: archive-cpt.php VS custom page template
- Filter custom post type archive page with custom taxonomies (categories) with AJAX
- Ajax form filter post by custom fields [closed]
- How to load custom post archives sub-pages with ajax?
- Navigation menus not showing because of custom post type filter
- Rewrite URL for only archive page (custom post type)
- Archive slider for CPT
- How To Create A Custom Taxonomy 404 Page
- Archive template for custom post type only lists first 10
- Getting the URL of the parent page
- Change archive page template using pre_get_post
- Ajax Check Post Status
- Filtering WP_Query Dynamically on the Front-End
- Why get_posts() not returning only selected category posts from Custom Post Type?
- Storing posts from query and accessing later via AJAX call
- Custom post type is showing custom home page, not archive page
- Ajax Custom Post Filter is not filtering
- Why is my site using index.php instead of archive?
- Custom post type – use ajax to display sub pages
- Custom post type archive page blank
- Dynamic Custom Fields
- Load Next Posts With AJAX not working with custom post type
- Retrieve custom post types by custom taxonomies with WP_Query
- Custom Post Archive is not working
- Custom post type’s extra fields – how to handle?
- Getting 400 Bad Request on AJAX Call
- Select2 AJAX and WP Query Returns ALL and does not filter
- How to integrate single and archive templates for custom post type in any WordPress theme
- ajax response not recieving
- Custom post type permalink uses archive page to display posts
- WordPress notification if new post published
- CPT with its own category and tag url
- Custom Post Type Archive template not being called
- How do I update_post_meta() or add_post_meta() with an AJAX call
- Can’t replace the default sidebar with a custom sidebar on Custom Post Type in Genesis
- Change Post Meta via AJAX from the posts list table
- How do I override the default number of items to be listed on an archive.php page? [duplicate]
- Best way for a plugin to define a custom post type archive template?
- WordPress custom post type numeric pagination with ajax
- Is possible register two archive pages for single custom post type?
- Archive page of CPT’s custom Taxonomy
- How to filter custom post type by multiple Taxonomies
- Not saving custom taxonomy while using ajax
- Search for custom field input of a custom post type in ajax live search
- Filtering posts based on three taxonomies
- WordPress next post by ajax call on button click
- Trying to list years (for a filter) but not all years display
- Use a template for a specific url slug without creating a page
- How to submit the date with ajax?
- How can I create a button that when clicked populates a div with a list of foods that are checked as a certain type of ACF?
- Attend event form with ajax
- ACF Pro Accessing fields on a Custom Post Type
- WordPress custom post type post item data – show/fetch only on click with Javascript dynamically?
- How to display custom post type pagination buttons when processing AJAX request
- My post loop needs to have 8 different post templates
- Multiple Custom Post Type in Taxonomy Archive Causing White Screen
- Ajax load more inside custom post type taxonomy
- Is there a best practice, or typical way to do AJAX updating for data on a custom admin screen or post.php?
- get first limited words from a custom post in the archive page
- Filtering custom post using Ajax and taxonomies, keep getting 0
- Fetch loop of custom post types with AJAX
- Iterating over custom post type archive returns incorrect first ID
- Collect custom post in a calendar
- Submitting custom post from frontend,jQuery ajax, and custom validation – can’t find proper place to insert wp_insert_post()
- Custom post type archive page not showing on archive-posttype.php
- How do I make my archive page look like popular reviewing sites (e.g., Polygon and Gamespot) [closed]
- Display custom post type archive on page.php template
- Making a archive gallery page for a custom post type which already has an archive page
- Get Non-Paginated Index of Post in Paginated Query
- How to assign custom post template to its custom taxonomy terms
- How to load more custom type posts through AJAX & LOAD MORE POSTS button
- How to display custom post types AND regular posts separately on a shared taxonomy archive?
- Archive templates based on taxonomies
- Organizing Custom Post Type Archive Template
- Updating custom post meta with ajax
- Custom filtering on month value only of an entire date field
- update custom taxonomy with Ajax in edit.php file [duplicate]
- Pagination not working only on Archive-Name.php using new WP_Query
- Internal Server Error when echoing an OBJECT from wp ajax action function in functions.php to JS file
- Load posts via AJAX without draft status
- WordPress CPT archive page display sticky post first and then display the rest of the posts in same Query
- Appointment booking system in WordPress
- Issues with Ajax Pagination and Filtering
- Passing total post count to javascript
- get total post in category via ajx
- Get current post type within functions.php
- how can i call archive-{post type}.php template from my custom plugins to my theams?