CMS Development

BenDTU
Membro

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 Avaliação positiva
1 Solução aceita
dennisedson
Solução
Equipe de Produto da HubSpot
Equipe de Produto da 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) }}">

Exibir solução no post original

0 Avaliação positiva
2 Respostas 2
dennisedson
Solução
Equipe de Produto da HubSpot
Equipe de Produto da 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 Avaliação positiva
BenDTU
Membro

resize_image_url function not resizing

resolver

 Thanks Dennis - that's working perfectly now.

0 Avaliação positiva