Liquid、JavaScriptなどに関する質問
メタフィールドのファイル(画像)の「代替テキスト」で設定したテキストをimgのaltではなく別のところに出す方法を教えていただけますでしょうか?
例えばimageというメタフィールドを作って以下Pタグ内に「代替テキスト」を表示させたいです。
<img src="{{ product.metafields.my_fields.image | file_url}}">
<p>ここに「代替テキスト」のテキストデータを表示</p>
フィルターなどを探しましたがやり方がわからなかったのでご教授いただけると幸いです。
解決済! ベストソリューションを見る。
成功
👋 Hey @ダダ ,
This is Matt from the Metafields team.
You can access the reference object of the metafield by appending .value
to the metafield. Once you've done that, you can access the alt text directly via .alt
.
In your case, it would look something like this.
<img src="{{product.metafields.my_fields.image | file_url}}">
<p>{{product.metafields.my_fields.image.value.alt}}</ p>
Hope that helps!
To learn more visit the Shopify Help Center or the Community Blog.
成功
👋 Hey @ダダ ,
This is Matt from the Metafields team.
You can access the reference object of the metafield by appending .value
to the metafield. Once you've done that, you can access the alt text directly via .alt
.
In your case, it would look something like this.
<img src="{{product.metafields.my_fields.image | file_url}}">
<p>{{product.metafields.my_fields.image.value.alt}}</ p>
Hope that helps!
To learn more visit the Shopify Help Center or the Community Blog.
実装できました!
ありがとうございます。
オンラインストアを運営する中で、商品の返品や交換は重要なプロセスとなります。Shopify管理画面を通して簡単に返品や交換が行えることをご存知でしょうか?希望する場合は、お客...
By Mirai Sep 15, 2024Shopifyの請求書の支払いが失敗したという通知を受け取って驚いたことはありますか。初めての支払いでエラーが発生したり、これまで何の問題もなく支払いできていたのに突然失敗し...
By Minami_ Sep 8, 20242023年2月、Shopifyはcheckout.liquidを廃止し、Checkout Extensibilityに移行することを発表いたしました。この新しいチェックアウト...
By JasonH Aug 15, 2024