Home Forums Space themes support forum Products not showing in product archive Reply To: Products not showing in product archive

#597058

Luke Nielsen
Keymaster

Hello,

Define the code below in the functions.php file in your child theme, clear the cache and check how it works.

if ( ! function_exists( 'xts_enqueue_waypoints' ) ) {
	function xts_enqueue_waypoints() {
		wp_enqueue_script( 'xts-waypoints-library', XTS_THEME_URL . '/js/waypoints.min.js', array(), XTS_VERSION, true );
	}

	add_action( 'wp_enqueue_scripts', 'xts_enqueue_waypoints', 20 );
}

Kind Regards