django-shop icon indicating copy to clipboard operation
django-shop copied to clipboard

A Django based shop system

Results 104 django-shop issues
Sort by recently updated
recently updated
newest added

Hi there, I'm having a hard time resolving the migrate issue. I have initially changed all the smart card and smartphone models to caps and t-shirts respectively but when I...

Hi, My Customer model has additional fields. And because of that the CustomerForm on checkout stage shows those fields. How can i hide them?

feature request
accepted

For example, we have two different intities: ``` class Product(CMSPageReferenceMixin, BaseProduct): ... class TyreModel(Product): brand = models.ForeignKey(TyreBrand) SUMMER = 'summer' WINTER = 'winter' ALL_WEATHER = 'all_weather' SEASONS = ((SUMMER, 'summer'),...

I set up a shop acoording to tutorial https://django-shop.readthedocs.io/en/latest/ Then I copied the model SmartPhoneModel to ScooterModel and changed the set of fields. The new model is different from the...

Hi, Today i have received error `django.core.exceptions.FieldError: Cannot resolve keyword 'depth' into field`. According to [release note](http://docs.django-cms.org/en/latest/upgrade/3.5.html) for Django CMS 3.5.0 > Another significant example is that the Page model...

feature request

What is the ability to pay for the order after submitting it? I would need information on how to create a payment to an existing order. It often happens that...

When following the tutorial demo, I found a missing dependency on `djangoshop-stripe`. Being a newcomer, I installed `django-shop-stripe`, which led to further problems, until sombody was kind and guided me...

We should document in a nice, concise manner the exact requirements as well as the necessary steps to integrate django-shop into existing custom Django projects. Related: #394, #392.

documentation

It would be useful to have information about whether a product is already inside the Cart or the watchlist. This could be achieved by adding two Boolean fields to the...

I need to do a workflow that will change the status of the order depending on the address from which the client will return from the PSP. They all look...