[mezzanine-users] Re: Built-in way to require billing/shipping address?

2014-02-21 Thread Josh B
Hey Geoffrey, all of the fields are already required. Are you looking to turn them off from being required or? On Sunday, February 9, 2014 2:23:23 PM UTC-7, Geoffrey Sechter wrote: Does Cartridge ship with a setting to make billing and/or shipping address fields required? If not, would

Re: [mezzanine-users] Admin navigation

2014-02-22 Thread Josh B
Stephen, what is your stance on modifying the admin/base.html? On Saturday, February 22, 2014 7:30:30 PM UTC-7, Josh B wrote: I don't have a ton of time, but I will take a look and fix a couple of things. On Saturday, February 22, 2014 12:35:26 AM UTC-7, Stephen McDonald wrote: I've just

[mezzanine-users] Re: how to customize the shipping fee

2014-02-23 Thread Josh B
You will need to create a custom Shipping Handler. http://cartridge.jupo.org/integration.html#billing-shipping Depending on how many different shipping fees you have you might also have to add an additional field (http://mezzanine.jupo.org/docs/model-customization.html#field-injection) to each

Re: [mezzanine-users] Admin navigation

2014-02-23 Thread Josh B
34.0.1847.3 On Mon, Feb 24, 2014 at 4:10 PM, Josh B josh.ba...@wearetopsecret.comjavascript: wrote: I just opened a Pull Request for the messages issue. Haven't had a chance to look into the collapsing navigation. Let me know if you have time to take care of that Josh. If not I might have

Re: [mezzanine-users] Admin navigation

2014-02-23 Thread Josh B
Did you want it to butt up to the top or? On Sunday, February 23, 2014 10:19:31 PM UTC-7, Stephen McDonald wrote: Ahhh I'm sorry, I just cleared my cache and it mostly looks right: http://cl.ly/image/1s2j3B121Q3U On Mon, Feb 24, 2014 at 4:17 PM, Josh B josh.ba

Re: [mezzanine-users] Admin navigation

2014-02-23 Thread Josh B
the admin a dress up! On Mon, Feb 24, 2014 at 4:21 PM, Josh B josh.ba...@wearetopsecret.comjavascript: wrote: Did you want it to butt up to the top or? On Sunday, February 23, 2014 10:19:31 PM UTC-7, Stephen McDonald wrote: Ahhh I'm sorry, I just cleared my cache and it mostly looks right

Re: [mezzanine-users] Admin navigation

2014-02-25 Thread Josh B
successful. I think one of the main usability issues currently is the tiny fonts everywhere. On Mon, Feb 24, 2014 at 4:24 PM, Josh B josh.ba...@wearetopsecret.com javascript: wrote: Sounds good, besides the collapsible menu is there other things you want to do to the admin? On Sunday

Re: [mezzanine-users] Cartridge and Product Option Type Choices

2014-02-25 Thread Josh B
! On Tue, Feb 25, 2014 at 7:57 AM, Josh B josh.ba...@wearetopsecret.comjavascript: wrote: Working on a couple of projects where each product will have a unique set of options. With that I am building a seller admin where a seller can create a product, create options, inventory etc

[mezzanine-users] Re: Current approaches to multiple Product types in Cartridge

2014-02-26 Thread Josh B
Based on what you described I think subclassing is your best bet. Variations currently have some limitations and I don't think would accomplish what you are trying to do. (https://groups.google.com/forum/#!topic/mezzanine-users/kYzgBKcwSsg) On Wednesday, February 26, 2014 4:40:19 AM UTC-7,

[mezzanine-users] Re: do cartridge have refund function?

2014-03-11 Thread Josh B
It currently doesn't have one so you would need to create it. On Tuesday, March 11, 2014 5:31:58 AM UTC-6, lu zou wrote: currently want to integrate payment gateway ,do cartridge have refund function or I need to write new one? -- You received this message because you are subscribed to

[mezzanine-users] Migration Issue

2014-06-03 Thread Josh B
All I am trying to create a new model that has a foreignkey to the shop.Product model. But for some reason when I try and run the migration I get the following error. ValueError: Cannot successfully create field 'product' for model 'shippingspecification': The model 'product' from the app

Re: [mezzanine-users] Migration Issue

2014-06-03 Thread Josh B
://south.readthedocs.org/en/latest/ormfreezing.html On Wed, Jun 4, 2014 at 2:30 PM, Josh B josh.ba...@wearetopsecret.com javascript: wrote: All I am trying to create a new model that has a foreignkey to the shop.Product model. But for some reason when I try and run the migration I get the following error

[mezzanine-users] M2M With Products

2014-10-28 Thread Josh B
I am trying to tie products to an event, but for some reason I am unable to create a M2M with the Products table. event_products = models.ManyToManyField(cartridge.shop.models.Product, blank=True, verbose_name=_(Products),related_name='event_products',

Re: [mezzanine-users] M2M With Products

2014-10-28 Thread Josh B
Duh, thanks Stephen. Thought I tried that. On Tuesday, October 28, 2014 3:38:12 PM UTC-7, Stephen McDonald wrote: Should the first arg just be shop.Product ? On Wed, Oct 29, 2014 at 9:36 AM, Josh B josh.ba...@wearetopsecret.com javascript: wrote: I am trying to tie products to an event

Re: [mezzanine-users] Cartridge creating a product with a user defined price

2014-11-10 Thread Josh B
things nicer/saner and I think it's a good approach. On Sun, Nov 9, 2014 at 1:18 AM, Josh B josh.ba...@wearetopsecret.com javascript: wrote: I am creating a store that has normal products and it also has donation based products. With the donation products the user defines the price. Here

[mezzanine-users] Cartridge + Auth.net

2014-11-11 Thread Josh B
Not sure if I have something configured wrong but when the expiration date is being sent to Auth.net it is prepended with the letter b. From what I have been able to track down its happening on this line cartridge/shop/payment/authorizenet.py 'x_exp_date': (data['card_expiry_month'] + /

Re: [mezzanine-users] SSL Help

2014-11-14 Thread Josh B
. On Friday, November 14, 2014 8:22:13 AM UTC-7, Josh Cartmell wrote: I've had issues with redirects and SSL before if I put in the wrong Force host which is a backend editable setting. On Fri, Nov 14, 2014 at 3:19 AM, Josh B josh.ba...@wearetopsecret.com javascript: wrote: I must be missing

Re: [mezzanine-users] SSL Help

2014-11-14 Thread Josh B
') Also I see that line in the deploy local_settings.py.template file. On Friday, November 14, 2014 9:08:57 AM UTC-7, Josh B wrote: Thanks, Josh. I have tried with that set or left blank and I get the same thing. I have also removed the SSL config parameters and just use default ones and I

[mezzanine-users] Re: Cartridge creating a product with a user defined price

2014-11-17 Thread Josh B
This approach has been solid for me and currently using it in a production environment. For my use I needed real Donation products as they needed to expire or only sell a limited number. If you don't need that functionality then you can use what Josh C posted. Josh On Monday, November 17,

[mezzanine-users] Re: Cart processors

2014-11-21 Thread Josh B
At first glance this seems like a pretty good approach. On Sunday, November 16, 2014 9:56:11 PM UTC-7, Alex Hill wrote: Hi all, Currently discounts, tax and shipping are all dealt with in their own separate handlers, and handled slightly differently from one another. I'd like to unify

[mezzanine-users] Re: Cartridge creating a product with a user defined price

2014-11-23 Thread Josh B
to me, that it shut go in shop/product.html, but how to inject it there? Henri Am Freitag, 21. November 2014 22:35:00 UTC+1 schrieb Josh B: Sorry, was traveling and missed your message. What you will need to do is create either a view or a page processor ( http://mezzanine.jupo.org/docs

Re: [mezzanine-users] Variable product price

2014-12-08 Thread Josh B
Hey Maxim, To build off of what Josh said. I would create a ProductPricing model that spells out the specific rules and pricing for each property. Then when a user selects a date reference the pricing structure and utilize the user defined pricing to set the product to that price. On Monday,

[mezzanine-users] Re: Cartridge payment

2015-02-10 Thread Josh B
Hi Wesley, Its really easy. Take a look at https://github.com/stephenmcd/cartridge/tree/master/cartridge/shop/payment to see the integrations people have already done. They are good examples if you need to write your own. On Tuesday, February 10, 2015 at 5:44:28 AM UTC-7, Wesley wrote: Hi

[mezzanine-users] Partitioned media library with a common folder

2015-08-10 Thread Josh B
Hi Eduardo, I have symlinked folders before and it works really well. The only issue will be if a user deletes a shared image. -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop receiving emails from it,

[mezzanine-users] Media Library Rename file issue

2015-07-08 Thread Josh B
Having a weird issue where I am unable to rename any image using the Media Library. Always getting this message (Only letters, numbers, underscores, spaces and hyphens are allowed.) Anyone else ever ran into this problem or have any ideas? -- You received this message because you are

[mezzanine-users] Re: Stuck on something simple... trying to add a field to blogcategory

2015-09-13 Thread Josh B
Hey J M. You shouldn't need the models.py file. I think you if you add the following to your admin.py you will be good to go. from copy import deepcopy from django.contrib import admin from mezzanine.blog.admin import BlogCategoryAdmin from mezzanine.blog.models import BlogCategory

[mezzanine-users] Re: Cartridge Admin Questions

2016-05-11 Thread Josh B
Hey Ryne, 1. Most clients I have worked with have existing SKUs for products so this makes it easier for those to be tied together. 2. There might be another reason but its also a limitation of Django Inlines. Also there is a way to change this functional but can cause other issues. 3. This is

[mezzanine-users] Re: Mezzanine REST API 0.4.0 Released

2016-05-04 Thread Josh B
Very cool, just installed this and am excited to use it on this new project. Do you have plans to add Cartridge support? Trying to decide if I fork your project and add products or do a standalone app. On Wednesday, March 2, 2016 at 11:17:17 AM UTC-7, Geo wrote: > > Hi all, > > Today I have

[mezzanine-users] Freelancers

2017-08-17 Thread Josh B
I have a site where the frontend code is done and its 10% wired up / models created. Any freelancers have time or interest in helping to wrap this up over the next 7 days?? Currently juggling 3 projects and this is the easiest one to freelance out. -- You received this message because you

[mezzanine-users] Re: Customizing Blog_Post_List

2017-05-10 Thread Josh B
Make sure your template is in the same directory structure as the original file. [YOUR APP]/templates/blog/blog_post_list.html [YOUR APP]/templates/blog/blog_post_detail.html On Wednesday, May 10, 2017 at 9:06:49 AM UTC-6, KD wrote: > > Hello all, > I am trying to create a custom theme for a

[mezzanine-users] No Payment step when $0

2017-10-19 Thread Josh B
We have been trying to hide the payment step when the cart has a $0 total. Has anyone pulled this off or any suggestions? -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send

[mezzanine-users] Re: No Payment step when $0

2017-10-20 Thread Josh B
the card if the cart is $0 On Thursday, October 19, 2017 at 10:05:46 AM UTC-6, Josh B wrote: > > We have been trying to hide the payment step when the cart has a $0 total. > Has anyone pulled this off or any suggestions? > > -- You received this message because you are subscribe