Great, thanks.
I have now implemented this change for you. Please check your older posts. My initial tests look positive.
My Actions:
1) I enabled your child theme. Inside the child functions.php file I added this function: http://pastie.org/private/re8meixt0uov0eigeu6ww.
2) In the main parent theme, I had to change this file as I could not overwrite this within a child theme: /themes/atelier/swift-framework/layout/single-post.php
Changed this:
`$fw_media_display = sf_get_post_meta( $post->ID, ‘sf_fw_media_display’, true );
$media_type = sf_get_post_meta( $post->ID, ‘sf_media_type’, true );`
To this:
$fw_media_display = sf_get_post_meta( $post->ID, 'sf_fw_media_display', true );
$media_type = sf_get_post_meta( $post->ID, 'sf_media_type', true );
if ( $fw_media_display == "" ) {
$fw_media_display = "standard";
}
As I could not overwrite no.2 within a child theme, if you update the theme, please add in the above as detailed.
Thanks,
David.