-
Notifications
You must be signed in to change notification settings - Fork 652
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
商品詳細ページにSNS共有ボタンを表示する #4916
base: 4.3
Are you sure you want to change the base?
商品詳細ページにSNS共有ボタンを表示する #4916
Conversation
@@ -13,3 +13,4 @@ id,device_type_id,block_name,file_name,create_date,update_date,use_controller,de | |||
12,10,News,news,2017-03-07 10:14:52,2017-03-07 10:14:52,0,0,block | |||
13,10,Product Search,search_product,2017-03-07 10:14:52,2017-03-07 10:14:52,1,0,block | |||
14,10,Featured,topic,2017-03-07 10:14:52,2017-03-07 10:14:52,0,0,block | |||
15,10,Social Buttons,social_buttons,2021-02-12 14:00:00,2021-02-12 14:00:00,0,0,block |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@matsuoshi
このあたりを参考に、マイグレーションの作成もお願いできますか?
https://github.com/EC-CUBE/ec-cube/blob/4.0/app/DoctrineMigrations/Version20201218044542.php
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chihiro-adachi 確認ありがとうございます、マイグレーションファイルを追加しました
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
マイグレーションでエラーになりました。
An exception occurred while executing 'INSERT INTO dtb_block (
id, device_type_id, block_name, file_name, create_date, update_date, use_controller, deletable, discriminator_type
) VALUES(
?, 10, "ソーシャルボタン", "social_buttons", "2021-02-12 14:00:00", "2021-02-12 14:00:00", 0, 0, "block"
)' with params [15]:
SQLSTATE[42703]: Undefined column: 7 ERROR: column "ソーシャルボタン" does not exist
LINE 4: $1, 10, "ソーシャルボタン", "social_buttons", "2...
^
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kiy0taka すいません、マイグレーションのエラーを修正しました
デフォルト状態から表示されるようになっていますが利用しないサイトもありますので、 |
現在、TwitterとFacebookの追加を頂いておりますが、この2つで良いかという点と また別の問題として、そもそも需要がないというのもあります こちらもう少しディスカッションを重ねたいです。 |
概要(Overview・Refs Issue)
商品詳細ページほかに、SNSシェアボタンを追加します
#4849
方針(Policy)
Twitter および Facebook のシェアボタンを、各ページに配置します。
ただし、以下のページでは表示されません。
実装に関する補足(Appendix)
シェアボタンは新規ブロック social_buttons.twig として作成し、デフォルト状態ではレイアウトのフッター上部に入るように設定しています。
CSS はスタイルガイド内の "2.3 その他ボタン" 内に追加しました。
テスト(Test)
期待するページに、SNSシェアボタンのブロックが出力されていることを確認する Webテストを追加しました。
相談(Discussion)
マイナーバージョン互換性保持のための制限事項チェックリスト
レビュワー確認項目