Thank for your response, i was using almFilter this way just to try to see what was going on.
On the website i’m using it the way you describe :
The shortcode :
echo do_shortcode('[ajax_load_more posts_per_page="6" preloaded="true" preloaded_amount="6" post_type="recipe"]');
The buttons :
<li class="light"><a title="Rice" data-taxonomy_operator="IN" data-taxonomy_terms="rice" data-taxonomy="recipe_category" data-post_type="recipe" data-posts_per_page="6" data-scroll_distance="10" data-repeater="default" href="#"><i class="ico icon-rice"></i> <span>Rice</span></a></li>
and below the JS like your example.
(...)
var data = el.data(), // Get data values from selected menu item
transition = 'fade', // 'slide' | 'fade' | null
speed = '300'; //in milliseconds
console.log(data);
jQuery.fn.almFilter(transition, speed, data); // reset Ajax Load More (transition, speed, data)
(...)
If i press the button Rice, the call on admin-ajax.php is done with thoses params :
action=alm_query_posts
author=
category=
category__not_in=
comments=
custom_args=
day=
exclude=
lang=
meta_compare=
meta_key=
meta_relation=
meta_type=
meta_value=
month=
nonce=305b88a578
offset=0
order=DESC
orderby=date
pageNumber=0
post__in=
post__not_in=
post_format=
post_status=
post_type[]=recipe
posts_per_page=6
preloaded=true
preloaded_amount=6
previous_post=false
previous_post_id=
previous_post_taxonomy=
query_type=standard
repeater=default
search=
seo_start_page=1
slug=recipe
tag=
tag__not_in=
taxonomy=recipe_category
taxonomy_operator=
taxonomy_relation=
taxonomy_terms=
theme_repeater=null
year=
I can’t figure why taxonomy_terms and taxonomy_relation are empty (and why it’s ok for the others param like taxonomy).