Hey iriderpro,
It looks like the JavaScript file is missing from the source of the page. Usually this means that your theme is not using the wp_footer() function or is dequeuing the JavaScript file before it’s outputted on the page.
You could try switching themes to confirm this, or you could try enabling one of the settings “Are you using an AJAX theme?” or “Enqueue JS file in head” found on the “Customize” tab.
Thanks,
Craig
Thanks for reply.
I use custom theme with wp_footer() function.
if i enable settings “Are you using an AJAX theme?” – i got “Uncaught ReferenceError: sbi_init is not defined”
if i enable “Enqueue JS file in head” – i got “undefined”
Can i manually attach javascript or are not enough?
It looks like the file is now loaded on the page: https://snipboard.io/WCj5fp.jpg
Were you able to fix this? I would expect sbi_init(); to return ‘undefined’ since it has no return value. If there is HTML for the feed on the page, it will load the feed and properly size the images. Have you tried adding the shortcode [instagram-feed] somewhere on this page?
– Craig
file is now loaded, but feed is not apeear.
I inserted shortcode [instagram-feed] in news page.
https://snipboard.io/phsadL.jpg
Hmm is it possible that this page template doesn’t use “the_content()” to display the content? I’m seeing no sign of the shortcode being used on this page. Can you try switching to a default theme (like twentynineteen) and see if a shortcode works then?
Thanks for reply.
I solved problem.
My theme was maden from HTML and there are absent php code:
“php the_post();”
“php the_content();”
i added it and feed is appear.
Thanks for letting me know! Glad we could figure this one out.