I tried following code and it is working for me. Add this code in your functions.php file:
add_filter('pre_get_posts', 'pre_posts_order'); function pre_posts_order($wp_query){ if( is_category() ) $wp_query->set( 'orderby' , 'rand' ); return $wp_query; }