This article serves as an addendum to Change Genesis Child Theme Style Sheet Load Order. After bringing up a new eCommerce site with the Parallax Pro theme, I discovered that the instructions provided in my previous post do not work with Parallax Pro. When you follow the previous tutorial for Parallax Pro, the parallax.css file won't load, giving the appearance that the site is hung up.
Parallax Pro is the first Studio Press theme that I am aware of that loads the parallax.css file outside of functions.php. This file is loaded in output.php, which is located in the theme's /lib/ directory. Line 6 in this file hold the code that breaks. Simply change line six from this:
add_action( 'wp_enqueue_scripts', 'parallax_css');
To this:
add_action( 'wp_enqueue_scripts', 'parallax_css', 40);
All you've done in this modification is change the load priority of the parallax.css file so it loads after both WooCommerce and style.css files.
Leave a Reply