Johan Ahlb?ck
Forum Replies Created
-
Forum: Plugins
In reply to: [Wordpress Instagrabber] Doesn't updateThis should be fixed with the latest update. Sorry.
Forum: Plugins
In reply to: [Wordpress Instagrabber] Doesn't updatedo you use a tag stream?
Forum: Plugins
In reply to: [Wordpress Instagrabber] Doesn't updateSorry i cannot recreate this error. I will try to find this error.
Forum: Plugins
In reply to: [Wordpress Instagrabber] Specifiying author and hashtagI will look in to it, but i won’t make any promisses i can’t keep ??
Forum: Plugins
In reply to: [Wordpress Instagrabber] Page NavigationMarked resolved as it is a duplicate question
Forum: Plugins
In reply to: [Wordpress Instagrabber] Customise post outputYour problem is related to the theme you are using. You can choose other way to do this. Create a new template files for this and leave out the title and use get_the_post_thumbnail( $post_id, $size, $attr ); to get the images for instagrabber.
In your other thread you are creating a new loop so im gonna use it here to demonstrate how you can achieve this.
<?php query_posts('post_type=images'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post-image" id="post-<?php the_ID(); ?>">"><?php echo get_the_post_thumbnail( get_the_ID(), array( 300, 300 ) ); ?></div> <?php endwhile; ?> <?php else: ?> <h2 class="main-h2">Images</h2> <h2>No Content</h2> <?php endif; ?>
array( 300, 300 ) means the image will be 300×300 pixels
if you want to display the caption yo can use <?php instagrabber_image_caption(); ?>
If you dont have the image saved in featured or both (only content) you may have to get the image like this:
change this:<div class="post-image" id="post-<?php the_ID(); ?>">"><?php echo get_the_post_thumbnail( get_the_ID(), array( 300, 300 ) ); ?></div>
to this:
<div class="post-image" id="post-<?php the_ID(); ?>">"><img src="<?php instagrabber_image_url(); ?>" width="300"> <p> <?php instagrabber_image_caption(); ?> </p> </div>
Forum: Plugins
In reply to: [Wordpress Instagrabber] Specifiying author and hashtagChoose User stream and add a tag. It’s that simple. But you can’t choose a user. The user is the one who authorizes the stream.
Forum: Plugins
In reply to: [Wordpress Instagrabber] Page NavigationYou should look as this thread. https://www.ads-software.com/support/topic/query-posts-page-navigation-problem?replies=3
Forum: Plugins
In reply to: [Wordpress Instagrabber] Customise post outputInteresting! Im looking at it now
No it doesn’t, it is just a manual way to update the stream.
Forum: Plugins
In reply to: [Wordpress Instagrabber] Specifiying author and hashtagYou only want images from a user with a specific tag? This plugin supports that.
Im getting my images on my blog. But only if they has #instablog as a tag.
There is a widget now.
There is no widget for this yet sorry. But it’s in development. The problem im having is the look for the widget. I will post a update in a couple of hours.
And one other thing.
If you don’t want the stream to automatically, you need to click on “update stream” on the stream page.
No need for donations. There are bigger and better projects to support.
I couldn’t find any errors i have tested with both the setting in admin (Auto get photos ) and a custom cron job and my photos .
Try updating your Auto get photos time again and refresh the stream page.
I’m using a wordpress function named wp_cron for getting the images at timed intervalls. But that function only runs when somebody is visiting the site. So if you set it for every half hour and no one visits your site it’s not going to run until somebody does.
If you are using cron-job on server (and not in admin settings) the next update will fix it.