Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Demo mode is the default state for Theme DesingerDesigner. There is no configuration necessary to start using it. The controls on the left panel are used to select between the pages you want to view. The controls in the right panel provide the theme options.

...

Step-By-Step Theming Process
  1. Create a duplicate of the Clean Theme directory and rename it to the current client.

  2. Update the _colors.scss file in the client theme directory with all of the client color options.

  3. Update the _variables.scss file in the client theme directory with the paths to the correct image files.

  4. Update the _typography.scss file in the client theme directory with the clients font information.

  5. Pull a copy of the theme designer branch with git clone git@bitbucket.org:aspenwareunity/commerce-theme-builder.git

  6. Run Theme Designer with the yarn dev command in terminal

  7. In the Theme Designer source files, open layouts.vue and checkout.vue. Locate the scss import statement that targets the client theme. Change the path in both files to point at the client theme directory you are working on. This will make Theme Designer load that clients SCSS into the Design window.

  8. Make sure that all but the following 3 mixins are commented out in the clients _theme.scss file : @include theme-vouchers-css(), @include theme-rewards-css(), @include fix-header-for-td(). These 3 mixins need to be available during the design process.

  9. In Theme Designer, in Presentation Mode, set all of the theme option controls to match the client choices.

  10. Enable Developer mode, and click the "Export All Mixins" button.

  11. Copy the mixins from the dialog box and paste them into the clients _theme.scss file. Make sure they are uncommented and save the file.

  12. In Theme Designer, enable Preview Mode. You should now see the mixins from the clients _theme.scss file being applied.

  13. While still in Preview Mode, make any additional configurations necessary to the mixins in the clients _theme.scss file and ensure they appear correct in the Theme Designer preview.

  14. IMPORTANT: Once the theme looks how you want it, remove the following 3 mixins from the clients _theme.scss file. The CSS being provided by these mixins will already be available in Commerce so if you forget to remove them from the _theme.scss file you will have two instances of this same CSS in the live site.

  15. Copy the clients entire theme directory from Theme Designer over to the Theme directory in commerce.

  16. Fire up a local instance of Commerce, set the environment to the client and QA the entire theme.

  17. If it looks good, commit the theme to Commerce source.