I was wondering if it's was possible to order section entries by random.
Example:
{% for entry in craft.entries.section('team').type('mainPeople').order('title random)) %}
I was wondering if it's was possible to order section entries by random.
Example:
{% for entry in craft.entries.section('team').type('mainPeople').order('title random)) %}
You can use MySQL's RAND() function inside your order method:
{% for entry in craft.entries.section('team').type('mainPeople').order('RAND()') %}