-
Notifications
You must be signed in to change notification settings - Fork 654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
商品一覧・商品詳細ページの商品画像 imgタグに、alt属性を追加 #5058
商品一覧・商品詳細ページの商品画像 imgタグに、alt属性を追加 #5058
Conversation
Codecov Report
@@ Coverage Diff @@
## 4.1-feature #5058 +/- ##
==============================================
Coverage 76.38% 76.38%
Complexity 6190 6190
==============================================
Files 445 445
Lines 20963 20963
==============================================
Hits 16013 16013
Misses 4950 4950
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
確認しました。 |
商品詳細画面の以下の箇所ですが、 {% for ProductImage in Product.ProductImage %}
<div class="slide-item"><img src="{{ asset(ProductImage, 'save_image') }}" alt="{{ Product.name }}"></div>
{% else %}
<div class="slide-item"><img src="{{ asset(''|no_image_product, 'save_image') }}" alt="{{ Product.name }}" /></div>
{% endfor %} 画像が少なければ余り問題ありませんが、画像が多いと同一のalt内容が使われることになるので好ましくありません。 サムネイル部分の {% for ProductImage in Product.ProductImage %}
<div class="slideThumb" data-index="{{ loop.index0 }}"><img src="{{ asset(ProductImage, 'save_image') }}" alt="{{ Product.name }}"></div>
{% endfor %} は、 |
@k-yamamura コメントありがとうございます! @chihiro-adachi お手数ですが再度確認おねがいします! |
@matsuoshi |
概要(Overview・Refs Issue)
フロントの商品一覧・商品詳細ページの商品画像 imgタグに、alt属性を追加する
alt属性の値は商品名としています
関連issue
#5052
方針(Policy)
実装に関する補足(Appendix)
テスト(Test)
相談(Discussion)
マイナーバージョン互換性保持のための制限事項チェックリスト
レビュワー確認項目