add your logo.png into modules\shop\assets\images
This module requires these two library's that are present under modules/shop/lib. To initialize these you need to add these two lines to your module Application.cfc:
// shop libarys
this.javaSettings.loadPaths = [getDirectoryFromPath(getCurrentTemplatePath()) & "shop/lib/"];
this.javaSettings.reloadOnChange=true;This module makes use of the built in coldfusion ORM so you will have ti enable that via /config/cfapplication.cfc
this.ormEnabled = true;
this.ORMSettings = {
datasource = "[YOUR DATASOURCE HERE]",
dbcreate = "dropcreate",
cfclocation = ["/modules/shop/model/beans"],
};The default shipping categories are based of swiss postal inland pricing. To change or expand this one needs to edit the OptionList & OptionLabelList for shippingCostCategory in both pageArticle.cfc & pageArticleVariation