w3villa-ravinder
Results
1
comments of
w3villa-ravinder
We can add new preferences with below snippet for spree 4.4: `module Spree module Core module AppConfigurationDecorator def self.prepended(base) base.preference :blog_alias, :string, default: 'blog' end end end end Spree::Core::Configuration.prepend Spree::Core::AppConfigurationDecorator...