tkrammer
Forum Replies Created
-
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Tagged images sortingHi,
I just double checked it by using another application (http://ink361.com/#/photos/tag/minimo) and the order is the same as in Instapress.
The reason for that order is, that Instagram’s API always sorts the images by the time/date the hashtag was added, no matter whether it’s the image’s title or a comment. And you just added a comment using your hashtag to the image that is un the left top.Forum: Plugins
In reply to: [Instapress] Using Instapress with a Responsive ThemeHi,
somehow there’s still the width and height attribute in the resulting HTML code. Actually it should work, when you disabled width and height… That is strange!
Are you sure that you activated the checkbox? Could you please double check that? Thanks!!Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Tagged images sortingHi,
could you probably post the hashtag you are talking about?
Thanks
Forum: Plugins
In reply to: No images in site view with Summary onHi,
sorry I couldnt figure out what the problem is. Please provide a more detailled description. thanks.
Forum: Plugins
In reply to: [Instapress] Hardcoding InstapressHi Steve,
the right way to do that is to add you userid to the shortcode. You shouldnt change any instapress code because your changes will be lost after any update!!!
So the right way:
<?php echo do_shortcode('[instapress piccount="9" userid="YOUR INSTAGRAM USERID OR NAME"]'); ?>Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] no slideshow in iPhone viewHi,
are you talking about the fancybox effect? If you are having problems with the fancybox effect please try to contact anyone from fancybox:
http://fancybox.net/thanks
Hi,
could you provide a link to your page? Do you have any other plugins installed that could cause that conflict?
thanks
Forum: Plugins
In reply to: [Instapress] {Plugin: Instapress] Instagrams not showing in widgetHi,
I couldn’t find the widget on your site. Did you replace it by another one?
Hi,
the issue is caused by your outdated version of jQuery. You are using 1.3.2 and you’ll need at least 1.4.0 to get your gallery to work.
Please update your jQuery.Thanks.
Hi,
could you give me the domain of your website so I can take a close look into that?
Thanks.
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Pagination not working?And a way that defintely has to work, but definetely is not the most beautiful, would be to add the following line after wp_footer():
<script type="text/javascript" src="<?php echo trailingslashit(get_bloginfo( 'wpurl' )); ?>wp-content/plugins/instapress/instapress.js"></script>Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Pagination not working?Ok, the only thing I can think about is that there has to be a problem with wp_enqueue_script. I’d advise you to probably changing the parameters and check if that changes anything.
You could probably try:
wp_enqueue_script('instapress', plugins_url('/instapress.js', $_SERVER['DOCUMENT_ROOT'].'wp-content/plugins/instapress/instagram.php'), array(), InstagramPlugin::getVersion(), true);
as well as:
wp_enqueue_script('instapress', plugins_url('/instapress.js', $_SERVER['DOCUMENT_ROOT'].'wp-content/plugins/instapress/instagram.php'), array(), '1.0', true);
or:
wp_enqueue_script('instapress-test', plugins_url('/instapress.js', $_SERVER['DOCUMENT_ROOT'].'wp-content/plugins/instapress/instagram.php'), array(), '1.0', true);This should result in a javascript error:
wp_enqueue_script('instapress1', plugins_url('/instapress1.js', $_SERVER['DOCUMENT_ROOT'].'wp-content/plugins/instapress/instagram.php'));Please keep me up to date. Thanks.
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Pagination not working?Is that line of code from above still in your template? The only thing I can think about now is that there’s a problem with any of the dependencies for Instapress’ javascript. Could you try modifying the code like that:
wp_enqueue_script('instapress', plugins_url('/instapress.js', $_SERVER['DOCUMENT_ROOT'].'wp-content/plugins/instapress/instagram.php'), array('jquery'), InstagramPlugin::getVersion(), true);Here’s a working example: http://knieh.com/?page_id=163
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Pagination not working?By the way: Did you have Instapress effects enabled when you disabled the fancybox plugin? Cause either way, the gallery won’t work with effects disabled (we’ll fix that in our next release).
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Pagination not working?Ok, I really can’t figure out what the cause of your issue is.
Would you be so kind as to try to add the following line to your template before wp_head() and wp_footer() are called:
wp_enqueue_script('instapress', plugins_url('/instapress.js', $_SERVER['DOCUMENT_ROOT'].'wp-content/plugins/instapress/instagram.php'), array('jquery', 'sack'), InstagramPlugin::getVersion(), true);I hope we’ll find a solution. Thanks.