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 trial

WordPress WordPress Theme Development The WordPress Loop Adding the Loop to the index.php File

Pratik Rai
Pratik Rai
6,856 Points

foundation framework is not working.

foundation framework is not working for me. I further copied functions.php from the downloaded files and put all the css and js files in the required folders. the problem is either the jquery is not loading or the framework is not working. my wordpress version is 4.4.2

Look in the webdeveloper tools on your site alt+cmd+j (mac) under network and look whats the reason. Browse to the foundation.css and then look if it is loading and if not whats the reason is.

I had the problem, that the css folder had not the correct rights. I gave the folder the rights and then it worked.

Good luck

1 Answer

Samantha Bretous
Samantha Bretous
1,803 Points

permission issue. Go into terminal, cd into your themes folder sudo chmod -R 775 your_theme_directory

755 is a bit safer

Ricardo Gutierrez
Ricardo Gutierrez
2,949 Points

I'm working local and "chmod go+r foundation.css" do the trick. You point me to the right way.

Tnx Samantha.