i-lateral / silverstripe-commerce-theme
A re-write of a SilverStripe Bootstrap theme that incorporates HTML5 Boilerplate, Twitter Bootstrap, and Font Awesome
Installs: 82
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 1
Language:Scheme
Type:silverstripe-theme
Requires
Replaces
This package is auto-updated.
Last update: 2024-10-21 00:31:33 UTC
README
A SilverStripe theme based on the Bootstrap theme built with compatability with our commerce module.
Installation
- Install add-on via Composer (
composer require i-lateral/silverstripe-commerce-theme master
) OR download a copy from the repository. - Create a folder of your choice within the
themes/
directory of your SilverStripe project to store your custom theme in. - If you've downloaded the add-on, copy all files from the repository into this directory.
- If you've installed the add-on using Composer, copy all the files from the
themes/bootstrap-commerce
directory into your custom theme directory. - Run
bower install
within your theme directory. - Update the
init()
method in your default page controller and add additional methods.
For more information about installation, see Configuration below.
Configuration
The default bootstrap theme includes all CSS, javascript, LESS, and template files for the site. It is recommended that you create a new theme and copy all the files from the bootstrap directory into your own custom theme directory. This way, if changes are made to the SilverStripe Bootstrap Theme add-on, you'll have a much easier time updating your theme.
By default the theme makes use of combined and minified CSS and JS. If you want to customise the apperance you should add your custom CSS to the custom.css file in the CSS directory.
If you want to work with the core less files and fully customise this theme, you'll need to do a few things to get started:
First, you'll need to run the bower install
command from within your theme directory. The theme
requires that you use Bower to manage jQuery, Modernizr, Bootstrap, and Font Awesome. The benefit
of this is that, should any of these components change, you can upgrade them yourself without
having to rely on the SilverStripe Bootstrap Theme add-on to be updated. If you require specific
versions for these components, update the bower.json
config file prior to installing the
components.
Second, you'll need to run an initial compilation of the LESS files prior to viewing a page. To compile CSS from LESS, you'll need to provide your own LESS pre-processor.
For Mac users, CodeKit is recommended. For Windows users, give Prepros a try. You can also use the lesscompiler module for SilverStripe
Be sure to set it so that the resulting CSS files are minified/compressed for production use.
Lastly, you'll need to update your default Page class (/mysite/code/Page.php
) to allow
SilverStripe to control the optimization of all the javascript and CSS. To do this, update the
init()
method in your Page_Controller
or (whatever default controller you'll be using) with
the following code:
public function init() { parent::init(); $ThemeDir = $this->ThemeDir(); Requirements::set_write_js_to_body(true); Requirements::set_combined_files_folder($ThemeDir.'/_requirements'); Requirements::combine_files( 'site.css', array( $ThemeDir.'/css/site.css', ) ); Requirements::javascript("//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"); Requirements::combine_files( 'site.js', array( $ThemeDir.'/javascript/libs.js', $ThemeDir.'/bower_components/matchheight/dist/jquery.matchHeight-min.js', $ThemeDir.'/bower_components/bootstrap/js/affix.js', $ThemeDir.'/bower_components/bootstrap/js/alert.js', $ThemeDir.'/bower_components/bootstrap/js/button.js', $ThemeDir.'/bower_components/bootstrap/js/carousel.js', $ThemeDir.'/bower_components/bootstrap/js/collapse.js', $ThemeDir.'/bower_components/bootstrap/js/dropdown.js', $ThemeDir.'/bower_components/bootstrap/js/modal.js', $ThemeDir.'/bower_components/bootstrap/js/tooltip.js', $ThemeDir.'/bower_components/bootstrap/js/popover.js', $ThemeDir.'/bower_components/bootstrap/js/scrollspy.js', $ThemeDir.'/bower_components/bootstrap/js/tab.js', $ThemeDir.'/bower_components/bootstrap/js/transition.js', $ThemeDir.'/javascript/main.js' ) ); }
Note: Pay careful attention to the version of jQuery being loaded in the Requirements! By default, it's set to the version of jQuery that was current at the time this add-on was last updated. If you need to change it, be sure to change it in your init()
method to match whatever version you are loading up with Bower.
When the site environment is in live mode, all CSS files are combined and saved to /themes/{$ThemeDir}/_requirements/site.css
. Javascript is combined/compressed to /themes/{$ThemeDir}/_requirements/site.js
. It is recommended that you add any further javascript and CSS files here to ensure they're properly optimized for better performance. Keep in mind that only javascript receives any compression. While CSS files are concatenated, you'll need to compress the CSS files yourself or use something the like the Minify CSS Module to compress CSS files on the fly.
In addition to the init()
method changes, I recommend adding one additional method to your controllers:
public function Copyright($startYear = "", $separator = "-") { $currentYear = date('Y'); if(!empty($startYear)) { $output = ($startYear>=$currentYear ? $currentYear : $startYear.$separator.$currentYear); } else { $output = $currentYear; } return $output; }
This a simple Copyright method that is used in the footer template to return a full copyright for the current year.
Note: to get the account menu to show in the footer, the following unction needs to be added to siteconfig. ... public function getAccountMenu() { $controller = Users_Account_Controller::create();
return $controller->getAccountMenu();
}
...