- Issue created by @nicrodgers
- Status changed to Closed: works as designed
9 months ago 11:32am 22 February 2024 - π¬π§United Kingdom nicrodgers Monmouthshire, UK
Turns out it was an issue with our theme.
Previously, in hook_preprocess_field we had $variables['items'][x]['content']['#options']['attributes'] but now they are in the url object's attributes.
- πΊπΈUnited States cdupree
Our site has this issue as well.
For others with the same problem, we had success performing a find and replace in our theme as follows:Find:
['#options']['attributes']
Replace:
['#url'].options['attributes']