CMS Development

BenDTU
Miembro

resize_image_url function not resizing

resolver

We are using the following syntax on our blog homepage:

<img src="{{ resize_image_url("{{ content.post_list_summary_featured_image }}", 100, 100, 0) }}">

 

Which is outputting to <img src="https://cdn2.hubspot.net/hubfs/2592552/Compare-and-Consolidate-3-757x350.png">

 

Is there something obvious we are doing incorrectly here? This syntax looks correct as far as I can tell.

0 Me gusta
1 Soluciones aceptada
dennisedson
Solución
Equipo de producto de HubSpot
Equipo de producto de HubSpot

resize_image_url function not resizing

resolver

@BenDTU 

try this

<img src="{{ resize_image_url(content.post_list_summary_featured_image, 100, 100, 0) }}">

Ver la solución en mensaje original publicado

0 Me gusta
2 Respuestas 2
dennisedson
Solución
Equipo de producto de HubSpot
Equipo de producto de HubSpot

resize_image_url function not resizing

resolver

@BenDTU 

try this

<img src="{{ resize_image_url(content.post_list_summary_featured_image, 100, 100, 0) }}">
0 Me gusta
BenDTU
Miembro

resize_image_url function not resizing

resolver

 Thanks Dennis - that's working perfectly now.

0 Me gusta