css out of order?
-
Most everything seems to be working well, but our custom.css file seems to be either not being loaded or being loaded out of order. The theme we are using is Buddy Boss and the custom.css file is loaded in functions.php like so…
/** * Enqueues scripts and styles for child theme front-end. * * @since Boss Child Theme 1.0.0 */ function boss_child_theme_scripts_styles() { /* * Styles */ wp_enqueue_style('boss-child-custom', get_stylesheet_directory_uri().'/css/custom.css', null, filemtime(get_stylesheet_directory() . '/css/custom.css')); } add_action('wp_enqueue_scripts', 'boss_child_theme_scripts_styles', 9999);
I’m also curious if it is possible to async load external scripts that are added by plugins (PureChat in our case is one such plugin). Any help/ideas would be most appreciated. Thanks!
The page I need help with: [log in to see the link]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘css out of order?’ is closed to new replies.