Hi @magdapinkwart
I think it’s Wp version issue. Your wordpress version does not accept declaration of array so follow one simple step.
You need to replace code from /wp-content/plugins/wp-travel-engine/public/class-wp-travel-engine-public.php
$terms = get_terms([
‘taxonomy’ => ‘activities’,
‘hide_empty’ => false,
]);
With this Code (Twice)
$terms = get_terms(array(
‘taxonomy’ => ‘activities’,
‘hide_empty’ => false,
));
Thanks,
Baljinder