When I enable captions to be the 'title' field in my field formatter settings, captions don't display. I worked out that this is because in the following code it's checking if the caption setting is an integer, whereas it's stored as a string.
if ($display['settings']['caption'] === 1) {
Changing it as follows makes captions work properly:
if ($display['settings']['caption'] === '1') {
Fixed
2.0
Fields Integration
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
No activities found.