Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialGiorgio Marangolo
420 PointsChanged the foundation.js to fundation.min.js, but still not working.
Hi! I changed the 'foundation.js' directory to 'foundation.min.js', but the navigation menu is still doing the same thing, not showing up. I looked to my console to see if there was a bug, but no bugs or problems were there.
Thanks!
5 Answers
Cena Mayo
55,236 PointsLooks like your actual problem may be this line:
wp_enqueue_scripts( 'mordernizr_js', get_template_directory_uri() . '/js/mordenizr.js', '', '', false );
where 'modernizr' is misspelled as mordenizr. :)
Joe Bruno
35,909 PointsPost your code.
Giorgio Marangolo
420 Points<?php
function wpt_theme_styles() {
wp_enqueue_style( 'foundation_css', get_template_directory_uri() . '/css/foundation.css' );
//wp_enqueue_style( 'normalize_css', get_template_directory_uri() . '/css/normalize.css' );
wp_enqueue_style( 'googlefont_css', 'http://fonts.googleapis.com/css?family=Montserrat:400,700' );
wp_enqueue_style( 'main_css', get_template_directory_uri() . '/style.css' );
}
add_action( 'wp_enqueue_scripts','wpt_theme_styles' );
function wpt_theme_js() {
wp_enqueue_scripts( 'mordernizr_js', get_template_directory_uri() . '/js/mordenizr.js', '', '', false );
wp_enqueue_scripts( 'foundation_js', get_template_directory_uri() . '/js/foundation.min.js', array('jquery'), '', true );
wp_enqueue_scripts( 'main_js', get_template_directory_uri() . '/js/app.js', array('jquery', 'foundation_js'), '', true );
}
add_action( 'wpt_enqueue_scripts', 'wpt_theme_js' );
?>
Bryn Humphreys
26,472 PointsHi Giorgio,
Looks like you problem might be that in your final add_action function you typed 'wpt_enqueue_scripts' it should be 'wp_enqueue_scripts'
Bryn Humphreys
26,472 PointsHi Giorgio,
Looks like you problem might be that in your final add_action function you typed 'wpt_enqueue_scripts' it should be 'wp_enqueue_scripts'
Rory Ferguson
1,808 PointsUse this in your functions.php, worked for me.
<?PHP
function wpt_theme_styles() {
wp_enqueue_style( 'foundation_css', get_template_directory_uri() . '/css/foundation.css' );
//wp_enqueue_style( 'normalize_css', get_template_directory_uri() . '/css/normalize.css' );
wp_enqueue_style( 'googlefont_css', 'http://fonts.googleapis.com/css?family=Asap:400,700,400italic,700italic' );
wp_enqueue_style( 'main_css', get_template_directory_uri() . '/style.css' );
} add_action( 'wp_enqueue_scripts', 'wpt_theme_styles' );
function wpt_theme_js() {
wp_enqueue_script( 'modernizr_js', get_template_directory_uri() . '/js/modernizr.js', '', '', false );
wp_enqueue_script( 'foundation_js', get_template_directory_uri() . '/js/foundation.min.js', array('jquery'), '', true );
wp_enqueue_script( 'main_js', get_template_directory_uri() . '/js/app.js', array('jquery', 'foundation_js'), '', true );
} add_action( 'wp_enqueue_scripts', 'wpt_theme_js' );
?>
Giorgio Marangolo
420 PointsGiorgio Marangolo
420 PointsThanks for the reply. I've just corrected it, but unfortunately that's not the problem :(