- Merge request !1Update src/Plugin/views/style/SwiperFormatterStyle.php → (Closed) created by immaculatexavier
Automatically closed - issue fixed for 2 weeks with no activity.
Hello, I try to use Swiper formatter for my view where I used Global "Custom text" field, and Swiper don't open settings in such configuration.
Try to add Custom text field to the Swiper view.
The problem is here: SwiperFormatterStyle.php
$field_storage_definitions = $this->entityFieldManager->getFieldStorageDefinitions($field->definition['entity_type']);
You need to wrap it up with
if (!empty($field->definition['entity_type'])) {
$field_storage_definitions = $this->entityFieldManager->getFieldStorageDefinitions($field->definition['entity_type']);
}
Fixed
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.