Danny Froberg
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Plugins
In reply to: [Jetpack VaultPress] Fatal error in CRONHi Stef,
It’s happening every 5 minutes.Hi,
Try;/** * DAF: Fix validation error of base64 images in stylesheets. */ add_filter( 'the_content', 'daf_fix_amp_space' ); function daf_fix_amp_space( $content ) { if ( function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ) { return str_replace('data:image/png; base64,', 'data:image/png;base64,', $content); } return $content; }Hope it helps
Howdy,
Had the same errors where it explodes on spaces in style urls show up and did this;/** * DAF: Fix validation error of base64 images in stylesheets. */ add_filter( 'the_content', 'daf_fix_amp_space' ); function daf_fix_amp_space( $content ) { if ( function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ) { return str_replace('data:image/png; base64,', 'data:image/png;base64,', $content); } return $content; }Modify the image/png if you have it fail on something else.
Forum: Plugins
In reply to: [SteemPress] Featured Images not being converted to steemitFetured images seems to be working now.
Forum: Plugins
In reply to: [SteemPress] Featured Images not being converted to steemitSure here you go; https://steemit.com/@amnlive
You also might want to add a filter for [media-credit][/media-credit] used for image credit display.
Do you guys accept PR’s for these things?
FYI: Was “Ditty News Ticker” last update that made it stop working
Forum: Plugins
In reply to: [Transposh WordPress Translation] Translation WP 3.9 not workingHave the same issue and switching to Bing didn’t help… ideas anyone?
Viewing 7 replies - 1 through 7 (of 7 total)