03/05/2015 at 8:31 pm
#321816
Keymaster
For the historical record, the following is the code snippet required when the Stack theme version 1.0 and Connections are both active:
add_action( 'wp_enqueue_scripts', 'stack_enqueue_picturefill', 99 );
function stack_enqueue_picturefill() {
if ( defined( 'THEME_URI' ) && class_exists('connectionsLoad') ) wp_enqueue_script('stack-picturefill', THEME_URI . '/js/picturefill.js', false, THEME_VERSION, false );
}