- Issue created by @gwagroves
If an Drupal image style is selected for display, FrontifyAssetFieldFormatter
should, looking at the code, at least extract the "width" applied in the image style and append it to the Frontify CDN image URL.
It does this by replacing {width}
in the original URL with the width value from the image style.
However, in our test setup the original URL does not contain the string {width}
, and therefore the width parameter is never appended.
Just adding ?width=XXX
to the end of the URL works.
Check for {width}
placeholder in the URL. If not available, just add the width attribute to the URL query string.
Active
2.0
Code