Why am I getting a liquid variable assignment error on my collection page?

You can’t assign a variable as a condition like this. You’ll need to initialise it first, then reassign it inside an if statement.

{% assign var = false %}
{% if condition %}
  {% assign var = true %}
{% else %}
  {% assign var = false %}
{% endif %}