To Use "Easy Instagram": Enter an "Easy Instagram" shortcode on a Post or Page, or use the "Easy Instagram" widget (shown below)
The Easy Instagram plugin is now set up and ready to use on your website!
To create one or more Instagram photo feeds, use the Easy Instagram widget, or use the following shortcodes to generate an Instagram feed in the content area of a Post or Page. By default the shortcode will display a single image.
For multiple photo feeds each using different hashtags or user ids, repeat the shortcode with different options set, or add the widget a second time to the same widget space, and enter different settings.
In order to display and feed Instagram photos through a website, someone must have registered an API client with Instagram.
There are many other Instagram plugins that use the same API key for thousands of installations.
Using that kind of plugin, you share the risk with all of the thousands of other plugin users that the plugin developer may disappear, may not keep the API key active, and effectively break your site feature without notice.
You also risk the plugin developer eventually charging for their plugin, especially because they're providing an API registration service on which you've become dependent.
The 'Easy Instagram' advantage is that only you (your website) and Instagram are involved, and that still -- you don't need to know any code whatsoever to complete the installation process.
Basically involving a series of cuts-and-pastes, most people report having registered their API client in just a few minutes.
Yes, but please notice that in some cases a small penalty in the page loading time can occur.
Yes it does, as of 'Easy Instagram' release 1.2.3.
Yes. Add caption_hashtags=false to your shortcode.
Yes. Check out our new widget settings (leave fields blank to disable display), and our new shortcode options on the 'Help' tab on the plugins Settings page in your CMS.
We may be able to include this feature in a future version. In the meantime, you can change the thumbnail sizes by editing the CSS:
div.easy-instagram-thumbnail-wrapper img.easy-instagram-thumbnail{
width:200px !important;
height:auto !important;
}
If you want to resize the thumbnails only for example in a sidebar you can do something like this:
.sidebar_classname div.easy-instagram-thumbnail-wrapper img.easy-instagram-thumbnail{
width:200px !important;
height:auto !important;
}
Yes. Add caption_hashtags=false to your shortcode.
To speed up page loading, the images are downloaded from the Instagram server and stored to your local web server. At the interval specified by the 'Cache Expire Time', these files are deleted and read again from Instagram. This means that when a new image is uploaded to Instagram, it will not appear on your website until the next cache expiry interval.
You can solve this using CSS styles. Each thumbnail has a div container with a CSS class on it so you can customize it the way you want.
Yes. Picture alignment can be customized directly in the CSS. To center align the picture, add the following in your style.css: div.easy-instagram-thumbnail-wrapper {text-align:center;} This will actually align all the content to the center. If you want just the image to be center aligned but keep the text aligned to the left, you also need to add: div.easy-instagram-thumbnail-author, div.easy-instagram-thumbnail-caption, div.easy-instagram-thumbnail-time{text-align:left;}