All Projects → understrap → Understrap Child

understrap / Understrap Child

Basic Child Theme for UnderStrap Theme Framework

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Understrap Child

tofino
WordPress boilerplate theme on a modern stack. NPM and Composer.
Stars: ✭ 26 (-94.22%)
Mutual labels:  wordpress-starter-theme
air
A hyper-minimal WordPress starter theme for developers built with Tailwind CSS.
Stars: ✭ 45 (-90%)
Mutual labels:  wordpress-starter-theme
webpack-gulp-wordpress-starter-theme
A WordPress theme with Webpack & Gulp
Stars: ✭ 110 (-75.56%)
Mutual labels:  wordpress-starter-theme
luxe
Luxe is a WordPress starter theme using a modern workflow and best practices.
Stars: ✭ 22 (-95.11%)
Mutual labels:  wordpress-starter-theme
bootscore
Flexible Bootstrap 5 WordPress starter theme with full WooCommerce support
Stars: ✭ 160 (-64.44%)
Mutual labels:  wordpress-starter-theme
bootstrap-basic
Bootstrap 3 css framework theme for wordpress. For theme developer can start build their theme very fast. To download for use with your project, please go to wordpress.org themes page in the link.
Stars: ✭ 22 (-95.11%)
Mutual labels:  wordpress-starter-theme
Forward-Framework
A killer WordPress theme framework built using underscores, gulp, sass, bourbon neat, bower & browsersync.
Stars: ✭ 23 (-94.89%)
Mutual labels:  wordpress-starter-theme
Air Light
WordPress starter theme - designed to be minimal, lightweight and easy for all kinds of WordPress projects. Public Roadmap: https://favro.com/organization/3b45e73eaf083f68fefef368/c1dd2d4a99d6723904d2e763
Stars: ✭ 285 (-36.67%)
Mutual labels:  wordpress-starter-theme
momtaz-framework
A free and light WordPress theme framework
Stars: ✭ 44 (-90.22%)
Mutual labels:  wordpress-starter-theme
WordPress-UIkit-Starter-Theme
A WordPress starter theme for developers using the frontend framework UIkit
Stars: ✭ 55 (-87.78%)
Mutual labels:  wordpress-starter-theme
html5-blank-slate
A blank starter theme that incorporates Bootstrap 5 with WordPress and Vite for frontend tooling.
Stars: ✭ 21 (-95.33%)
Mutual labels:  wordpress-starter-theme
sage-laravel-mix
🌟 Sage 9 with laravel mix & vuejs
Stars: ✭ 31 (-93.11%)
Mutual labels:  wordpress-starter-theme
starter-kit-theme
WordPress starter theme with a modern development stack for launching projects faster and easily
Stars: ✭ 25 (-94.44%)
Mutual labels:  wordpress-starter-theme
monsieurpress
A minimal & lightweight WordPress starter theme using gulp
Stars: ✭ 39 (-91.33%)
Mutual labels:  wordpress-starter-theme
sage-vue-tailwind
Sage 10 with laravel mix, tailwindcss and vuejs https://roots.io/sage/
Stars: ✭ 38 (-91.56%)
Mutual labels:  wordpress-starter-theme
branch
Branch Starter Theme - A WordPress starter theme based on Timber library and Bootstrap
Stars: ✭ 87 (-80.67%)
Mutual labels:  wordpress-starter-theme
wordpress-starter
Timber (Twig) + Parceljs Bundler
Stars: ✭ 19 (-95.78%)
Mutual labels:  wordpress-starter-theme
Flynt
Component based WordPress starter theme, powered by ACF Pro and Timber, optimized for a11y and fast page load results.
Stars: ✭ 363 (-19.33%)
Mutual labels:  wordpress-starter-theme
pixels-starter-theme
Starter theme for Pixels projects
Stars: ✭ 13 (-97.11%)
Mutual labels:  wordpress-starter-theme
untheme
A blank WordPress theme for developers.
Stars: ✭ 82 (-81.78%)
Mutual labels:  wordpress-starter-theme

understrap-child

Basic Child Theme for UnderStrap Theme Framework: https://github.com/understrap/understrap

How it works

Understrap Child Theme shares with the parent theme all PHP files and adds its own functions.php on top of the UnderStrap parent theme's functions.php.

IT DOES NOT LOAD THE PARENT THEMES CSS FILE(S)! Instead it uses the UnderStrap Parent Theme as a dependency via npm and compiles its own CSS file from it.

Understrap Child Theme uses the Enqueue method to load and sort the CSS file the right way instead of the old @import method.

Installation

  1. Install the parent theme UnderStrap first: https://github.com/understrap/understrap
    • IMPORTANT: If you download UnderStrap from GitHub make sure you rename the "understrap-master.zip" file to "understrap.zip" or you might have problems using this child theme!
  2. Upload the understrap-child folder to your wp-content/themes directory
  3. Go into your WP admin backend
  4. Go to "Appearance -> Themes"
  5. Activate the UnderStrap Child theme

Editing

Add your own CSS styles to /sass/theme/_child_theme.scss or import you own files into /sass/theme/understrap-child.scss

To overwrite Bootstrap's or UnderStrap's base variables just add your own value to: /sass/theme/_child_theme_variables.scss

For example, the "$brand-primary" variable is used by both Bootstrap and UnderStrap.

Add your own color like: $brand-primary: #ff6600; in /sass/theme/_child_theme_variables.scss to overwrite it. This change will automatically apply to all elements that use the $brand-primary variable.

It will be outputted into: /css/understrap-child.min.css and /css/understrap-child.css

So you have one clean CSS file at the end and just one request.

Developing With NPM, Gulp, SASS and Browser Sync

Installing Dependencies

  • Make sure you have installed Node.js, Gulp, and Browser-Sync [1] on your computer globally
  • Open your terminal and browse to the location of your UnderStrap copy
  • Run: $ npm install then: $ gulp copy-assets

Running

To work and compile your Sass files on the fly start:

  • $ gulp watch

Or, to run with Browser-Sync:

  • First change the browser-sync options to reflect your environment in the file /gulpconfig.json in the beginning of the file:
  "browserSyncOptions" : {
    "proxy": "localhost/wordpress/",
    "notify": false
  }
};
  • then run: $ gulp watch-bs

[1] Visit https://browsersync.io/ for more information on Browser Sync

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].