[Answered ]-Django oscar add a standard shipping method

2👍

Have you added your shipping app to your settings.py?

Should look a bit like this:

# settings.py

from oscar import get_core_apps
# ...
INSTALLED_APPS = [
    # all your non-Oscar apps
] + get_core_apps(['yourproject.shipping'])

Hope that’s the tick 🙂

Leave a comment