CMS Development

BenDTU
メンバー

resize_image_url function not resizing

解決

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 いいね!
1件の承認済みベストアンサー
dennisedson
解決策
HubSpot製品開発チーム
HubSpot製品開発チーム

resize_image_url function not resizing

解決

@BenDTU 

try this

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

元の投稿で解決策を見る

0 いいね!
2件の返信
dennisedson
解決策
HubSpot製品開発チーム
HubSpot製品開発チーム

resize_image_url function not resizing

解決

@BenDTU 

try this

<img src="{{ resize_image_url(content.post_list_summary_featured_image, 100, 100, 0) }}">
0 いいね!
BenDTU
メンバー

resize_image_url function not resizing

解決

 Thanks Dennis - that's working perfectly now.

0 いいね!