Hi Scott, You need to read the docs in the satchmo site on this:
http://satchmoproject.com/docs/dev/shipping.html It tells you how to install a custom shipping module. Basically you model one off this existing ones, and add it to your settings.py: SATCHMO_SETTINGS = { 'CUSTOM_SHIPPING_MODULES':['my_custom_module'], } run your syncdb if required, to update/install db tables. in the 'valid' method of the shipping module, then write any code you need to perform the logic required. Rick On Jan 20, 12:31 pm, Scott <[email protected]> wrote: > Hi, > > I need some assistance, basically I've never written my own module in > Satchmo, and I need help regarding international customers. Basically > if they are from any country besides the United Kingdom, the shipping > option is automatically and can only be "International". The way it is > at the moment, International users see the option to choose Recorded > UK for a cheaper price, and it's causing some problems. > > Can someone help me along the lines of what to add for this module? > > Thanks, > Scott -- You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en.
