ISOTOPE – Missing/Invalid Arguement Get Terms

get_categories() does not require parameters, by default it will query the post type post and the taxonomy category. However, get_terms() require a taxonomy parameter.

Also, in the second function, you wrote:

 $categories = get_terms();

It should have been

$terms = get_terms('your_taxonomy');