Created
January 6, 2022 22:41
-
-
Save ccarruitero/2716ae69210f10989b6316f49ddcdbae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyCustomEstimator < SolidusEasypost::Estimator | |
def shipping_rates(package, frontend_only = true) | |
# your custom logic | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/initializers/spree.rb | |
Spree.config do |config| | |
config.stock.estimator_class = 'MyCustomEstimator' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment