Matt Barrett (corradomatt)
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Weather Widget] API Calls and CachingYeah, you know…of course I found it 2 minutes after I posted this. Yes, you’re caching the requests using the transient API for 5 minutes.
Good to know you’re on it. Looking forward to the update Rob. Thanks for an otherwise great plugin!
Forum: Plugins
In reply to: [Social Hashtags] Link to the original instagram pageYeah, thanks
Forum: Plugins
In reply to: [WP Emmet] Select where Emmet is used….Thanks for the update rewish, but it was unfortunately not what I was looking for. My actual use case is that it loads on plugin forms text boxes, in particular with the Yoast WordPress SEO plugin it loads on the meta description box and I would prefer that it didn’t.
For me, it would be perfect if Emmet would only load on Text tab for posts and pages and for the file edit screens of themes and plugins. If I could easily turn it off everywhere else, I would do that.
It would be great for devs to have some filters or actions that we could utilize to customize how the plugin works.
But regardless, that for a great plugin!
Forum: Plugins
In reply to: [WP Emmet] Select where Emmet is used….Awesome! Excited to try it.
Forum: Plugins
In reply to: [Social Hashtags] Link to the original instagram pageThanks shanaver, that part I found but the image urls I’m getting are from amazon aws. I’m looking for the actual instagram page where that image can be viewed on instagram.
Forum: Plugins
In reply to: [Social Hashtags] Double ImagesThanks for the clarification. You should put that in your FAQ section. Good plugin either way, thanks!
Hi waynmeyer,
I actually went a different route with my output. Here is some sample code that I used….
Use this link to see the code…. https://pastie.org/6136066
I hope that helps.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] IE8 and Jetpack SlideshowsI don’t see the white background in IE9 but I do see the inline css in all browsers…..
firefox and chrome – style=”height: 410px; position: relative;”
IE9 (added after the main slideshow div…
<style> #gallery-11-1-slideshow .slideshow-slide img { max-height: 410px; /* Emulate max-height in IE 6 */ _height: expression(this.scrollHeight >= 410 ? '410px' : 'auto'); } </style>
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] IE8 and Jetpack SlideshowsThanks for the reply Jeremy, but it doesn’t look right in IE7 or IE8 because of the white background that is inserted for those browsers through inline css. Is there a way I can remove this inline css when the page loads in these browsers?
Forum: Plugins
In reply to: [Stream Video Player] Embeding in SlidedeckThanks Rodrigo, I have done this…but it’s still not working. I think that something is preventing your plugin from seeing the shortcode when it’s embedded inside a SlideDeck slideshow but I’m not sure why.
I’m going to check with the developers of SlideDeck for an answer since I think that this is their issue. I’ll report back here if I figure anything out.
Forum: Plugins
In reply to: [Stream Video Player] Embeding in SlidedeckThanks Rodrigopolo but I’m not sure what you mean by bbcode. I have several widget areas in the template already. The SlideDeck slider is displayed as widget.
Thanks Bruce! Worked great!!
Thanks for this code iana12 but I’m having problems working out some details with a parent post field.
I used the above code to find the post ID of the parent post and then I used the following code….
<?php echo get_post_meta($parent_post,'wpcf-dob', true); ?>
What I need is the date output from the dob field in the parent post but it’s not displaying correctly. It gives me some numbers but unfortunately they in no way represent my date. Could someone point me in the right direction?
That worked perfectly Srdjan! Thanks for the explaination.