前提・実現したいこと
#####instagram feedでインスタを画像のように表示させたい。
発生している問題・エラーメッセージ
追記:エラーメッセージ
Error Log:
03-24 02:43:56 - API error 2: An unexpected error has occurred. Please retry your request later.
Action Log:
03-18 07:00:37 - Saved settings on the configure tab.
03-24 02:51:29 - Cleared connection error.
03-24 02:51:29 - Cleared connected account error ○○○○(インスタアカウント名)
こちらはトークン再設定しました。
出力はできましたが、表示がおかしい。
Customizeでの設定が反映されません。
また、6枚表示で3枚ずつ並べると設定していますが、
細長く重なって表示されている状態です。
デペロッパーツールで
**<img src=~>の部分のelement.styleのdisplay:none;**をオフにすると元の大きさに戻り、
縦1列に6枚表示されるので、6枚出力は出来ているようです。
該当のソースコード
php
1<?php require_once('./wp-load.php'); ?>
html
1<div class="instaBOX"> 2<div id="instagram-feed"><?php echo do_shortcode('[instagram-feed]'); ?></div> 3</div>
試したこと
- プラグインのインストールやり直し
- 他のプラグイン無効化
- htmlでショートコードの変更
html
1<div class="instaBOX"> 2<div id="instagram-feed"><?php echo do_shortcode('[instagram-feed num=9 cols=3]'); ?></div> 3</div>
- Cleared connected account error ○○○○(インスタアカウント名)
とあったので、Configureの**『Button not working?』**からトークンを入力してみましたが
Please enter a valid User ID for this Business account.出てしまいました。
こちらのエラーはクリアできました。
補足情報(FW/ツールのバージョンなど)
Smash Balloon Instagram Feed バージョン 2.9
######カスタマイズの設定
Width of Feed 100%
Number of Photos 6
Number of Columns 3
Padding around Images 5px
あなたの回答
tips
プレビュー