thetrickster / FoundationPress-child

Child theme for FoundationPress Wordpress/Foundation starter theme at https://github.com/olefredrik/FoundationPress
22 stars 13 forks source link

Difficulty with installation #11

Open t-fulton opened 10 years ago

t-fulton commented 10 years ago

Took some figuring out, but I got things running using the following (starting off with installing the parent theme):

cd my-wordpress-folder/wp-content/themes/ git clone git@github.com:olefredrik/FoundationPress.git cd FoundationPress npm install && bower install cd ../ git clone git@github.com:thetrickster/FoundationPress-child.git mv FoundationPress-child your-theme-name cd your-theme-name npm install && bower install grunt

The last step is to add 'dist' to the jquery path in your-child-theme/library/enqueue-scripts.php (Foundation 5 implemented this new folder, see issue #4):

/js/jquery/jquery.min.js becomes: /js/jquery/dist/jquery.min.js


I believe there's an error on the third line of the 'Quickstart' instructions:

mv FoundationPress your-theme-name should be: mv FoundationPress-child your-theme-name