Discussions

How to set Drupal Commerce Kickstart Child Theme?

Question as title. How to make child theme for Drupal Commerce Child Theme.

Posted: Jul 29, 2012

Comments

CptAnt on September 29, 2013

Copy the Omega_Kickstart theme from profiles/commerce_kickstart/themes folder to sites/all/themes

Then rename to my_theme and go through renaming omega_kickstart.info to my_theme.info. Edit the contents accordingly.The template.php and any other php file you find will need editing where you see a function name like

function omega_kickstart_alpha_preprocess_page(&$vars)

to

function my_theme_alpha_preprocess_page(&$vars)

It's a bit of work

CptAnt on September 30, 2013

You have severall css files for each media query (screen width). If you are familiar with Sass take a look in the scss folders. To get yourself up and running with a sass/compass environment checkout https://drupal.org/node/1936970 Its from the Omega 4 docs but this section only applies to the Sass/Compass dev environment.