Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Last active February 29, 2024 13:55
Show Gist options
  • Save tdmrhn/0e927a41514dc7054985784c715b63c4 to your computer and use it in GitHub Desktop.
Save tdmrhn/0e927a41514dc7054985784c715b63c4 to your computer and use it in GitHub Desktop.
Blocksy 2 Preload Mini Cart CSS file
<?php
add_action('wp_enqueue_scripts', function() {
$theme = blocksy_get_wp_parent_theme();
wp_enqueue_style(
'ct-legacy-mini-cart-styles',
blocksy_cdn_url(
get_template_directory_uri() . '/static/bundle/cart-header-element-lazy.min.css'
),
[],
$theme->get('Version')
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment