chrislowthian
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Baskerville] Change Date Order on PostsThis worked great thanks.
Just a bit of feedback. If you check the single.php file you actually have:
<?php the_time( get_option( 'date_format' ) ); ?>
In all the content files you have:
<?php the_time( 'Y/m/d' ); ?>
Would it not be better to change all the content files to use:
<?php the_time( get_option( 'date_format' ) ); ?>
Then all users can control the date format from the WordPress Admin.
Forum: Plugins
In reply to: [Yoast SEO] Sitemap errorHaving this very same issue with my site map too.
Forum: Plugins
In reply to: [Yoast SEO] Missing XML tagHaving exactly the same issue, not found a fix yet either ??
I have added the following to my themes functions.php file which seems to remove the version from the header and the rss feed, but this plugin fails to do it.
function wpbeginner_remove_version() { return ''; } add_filter('the_generator', 'wpbeginner_remove_version');
Anyone else having the same issue with the Better WP Security Plugin?
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Captions not showingTry this:
<div class="instapress-shortcode"> <?php echo do_shortcode('[instapress piccount="24" userid="username" size="205" effect="fancybox" title="1"]'); ?> </div>
That should work, let me know!
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Change Fancybox Effect?Still not sure how to change the effects though?
Is it this part that needs editing in some way?
function initFancyBox() { if(jQuery.fancybox) { $('.instagram-image a[rel=instagram-images],.instapress-shortcode a[rel=instagram-sc-images]').fancybox(); } }
I have edited the following file: jquery.fancybox-1.3.4.js and changed the following values:
titleShow : true,
titlePosition : ‘inside’,
transitionIn : ‘elastic’,
transitionOut : ‘elastic’,But that has not made a difference.
I have also read up on the Fancybox website but their examples are not like your coding.
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Link Back to users photo on Instagram?After trying eberger3’s code:
$result .= '<a href="'.$obj->images->standard_resolution->url.'" rel="instagram-sc-images" title="<a href="'.$obj->link.'" target="_blank">'.$title.'</a >"">';
It works fine BUT when you hover over the thumbnails it shows the link HTML in the Title which is not so great ??
Is there a way to have the picture title then a link next to it saying “Click Here to Like or Comment”
This would be sooooo much better but beyond my coding skills.
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Link Back to users photo on Instagram?So I am guessing you can add a link under the Instagram Picture in FancyBox?
If so whats the best code to use?
Thanks
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] A feed from multiple users?Would be good if you could do this with the hashtags too!
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Paging bug & customizationGlad to hear this will be fixed in the next version I have just experienced this bug myself.
Looking forward to the update ??
Forum: Plugins
In reply to: [Instapress] [Plugin: Instapress] Link to username/authorWould love this to happen just so people can click on the image to get taken to the Instagram site and leave a comment on the Photo.
Please Please Please Implement this feature, it will help make websites using your plugin allot more social ??
Thank You for your quick response.
OK Well I have edited the plugin and removed the following which worked:
if ($page > 1 && !empty($previouspage)) { $output .= sprintf('<li><a href="%s" class="prev">%s</a></li>', $prevlink, stripslashes($previouspage)); }
and…..
if ($page < $pages && !empty($nextpage)) { $output .= sprintf('<li><a href="%s" class="next">%s</a></li>', $nextlink, stripslashes($nextpage)); }
Was this the correct way to do it?
Forum: Fixing WordPress
In reply to: [Plugin: WordPress.com Stats] flash stats graph not displayingI am also getting this problem. Is there a proper fix for this yet?
Forum: Themes and Templates
In reply to: CSS Not ValidatingThis has now been fixed in the latest skin release.