nlenkowski
Forum Replies Created
-
Forum: Plugins
In reply to: [Mailgun for WordPress] Why Two Years Outdated?@mailgun Just wanted to chime in as well. I’m a long-time Mailgun user with many clients using the service heavily. Wordfence recently marked this plugin as abandoned, and likely the WP plugin directory isn’t far behind. Any update on a possible release date for the new version? Thanks much!
Forum: Plugins
In reply to: [Custom Post Type Maker] Version 1.1.7 Broke My SiteNo worries. Thanks for looking into it and for maintaining such a useful plugin!
Forum: Plugins
In reply to: [Custom Post Type Maker] Version 1.1.7 Broke My SiteHello. Just had the same issue on several sites I manage. After updating to 1.1.7 the plugin did not reactivate automatically. I had to manually activate the plugin on each install. All sites were already on 5.2.2 before updating the plugin.
Forum: Plugins
In reply to: [Polylang] Can't get access to ACF gallery field from a translated page.Just ran into this problem myself and was pretty confused as to why my ACF gallery arrays were returning empty on translated pages only. I can confirm the problem exists when the gallery field is applied to both normal and options pages.
While not optimal, turning off media file translations in Polylang resolved the issue. The problem definitely resides there. This is the only issue I found when using ACF and Polylang together.
@chouby, any ideas?
Forum: Plugins
In reply to: [Perfect Images] Images not displaying in IE8 using Picturefill methodThanks Jordy, both for the plugin and for the continued support. Its much appreciated by myself and the community!
Forum: Plugins
In reply to: [Perfect Images] Images not displaying in IE8 using Picturefill methodThanks for the update on this.
I just found out this was the case as well and posted that the issue was resolved here, https://github.com/scottjehl/picturefill/issues/239
It would be great if we could get an updated Picturefill version included in this plugin! As it stands its unusable for retina images in IE8 and I have to use a different method ??
Thanks for the quick reply Ulrich, much appreciated.
Sorry, I didn’t see that bit at the bottom of the faq. For future reference this can be used to load the Flowplayer assets on all pages:
function fp5_has_shortcode( $has_shortcode ) { $has_shortcode = is_page(); return $has_shortcode; } add_filter( 'fp5_filter_has_shortcode', 'fp5_has_shortcode' );
And this will make it available globally:
function fp5_has_shortcode( $has_shortcode ) { return true; } add_filter( 'fp5_filter_has_shortcode', 'fp5_has_shortcode' );