Open elliot-sawyer opened 1 week ago
If you're using Focuspoint in your templates and want to convert to webp, it needs to be the last call in your template. For example:
$FeaturedImage.FocusFill(880, 480).Convert('webp') will work, while: $FeaturedImage.Convert('webp').FocusFill(880, 480) will not work
$FeaturedImage.FocusFill(880, 480).Convert('webp')
$FeaturedImage.Convert('webp').FocusFill(880, 480)
If you're using Focuspoint in your templates and want to convert to webp, it needs to be the last call in your template. For example:
$FeaturedImage.FocusFill(880, 480).Convert('webp')
will work, while:$FeaturedImage.Convert('webp').FocusFill(880, 480)
will not work