Many sites use the Voting API Widgets → module, but that does not currently have a Drupal 10 version - see
For people who would like to switch to using Rate, it would be useful to document how to convert old votes etc.
1. Install Rate
2. Convert old votes??? here's my example for a fivestar widget
\Drupal::database()->update('votingapi_vote')
->fields([
'type' => 'fivestar',
'value_type' => 'points',
'field_name' => NULL,
'rate_widget' => 'fivestar',
])
->condition('type', 'vote')
->condition('value_type', 'percent')
->condition('field_name', 'field_rating')
->execute();
3. Remove Voting API fields from entities
4. Uninstall Voting API Widgets
Active
3.0
Documentation