Show categories but sort it random?

hey there, we want to show some categories on our frontpage and if the user reload the page there will be new categories.
is it possible to show categories randomized? like the widget for listings. cause with listings it is possible.

Hi,

Unfortunately, there is no such feature, and neither is a simple PHP snippet. However, as a workaround, you can add this code

$categories=$categories->serialize();
shuffle($categories);

before this line hivepress/includes/blocks/class-listing-categories.php at master · hivepress/hivepress · GitHub. Also, please note that all direct changes to the code will need to be added after each update from our side, as they are automatically deleted.

I hope it helps