Yes, yes I am continuing to NOT accomplish this part... I don't even see where this info is added to a buttons logic.
Where do you add this "data-filter" information?
https://mixitup.kunkalabs.com/learn/tut … t-started/
You can add data-filter to the buttons in the same way Eric done in his script for data-myorder
Just add the following to Eric's script
$(".filter-all").attr("data-filter", "all");
$(".filter-1").attr("data-filter", "category-1");
$(".filter-2").attr("data-filter", category-2");
Then give each button the corresponding class like so
<button class="filter filter-all">All</button>
<button class="filter filter-1">Category 1</button>
<button class="filter filter-2">Category 2</button>