Re: [mezzanine-users] Is there a way to remove comments/ratings from everywhere?

2016-12-11 Thread Danny
Hi Matt,

The way I did it was to comment out/remove the sections of the templates
that dealt with comments in my customised templates.

So comments are still supported within the code base, but an end user can't
see them at all.

Hope this helps.

Seeya. Danny.

On 12 December 2016 at 07:03, Matt  wrote:

> I'm new to Mezzanine (and fairly new to Python). I'm looking to get away
> from Drupal and use something python-based.
>
>
> Is there a way to disable comments/ratings from mezzanine completely? eg.
> in templates and in admin panel? From my research, this is the only thing
> I've found: http://bitofpixels.com/blog/disabling-mezzanine-comments/ – I
> also found another article saying this is not supported (although it was
> from 4 years ago).
>
>
> I'm wondering if that link is my best option at this time (although that
> still leaves me with comment links in admin panel). I'm still learning the
> ropes so I may be missing something obvious. Thank you.
>
> --
> 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 an
> email to mezzanine-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
*Danny Sag*
Chairperson
Round World Events SA, Inc
City of Small Gods Terry Pratchett Fan Club - http://cityofsmallgods.org.au

*Nullus Anxietas VI - The Australian Discworld Convention* -
http://ausdwcon.org
"The Discworld Grand Tour" - Adelaide SA, August 4-6, 2017

-- 
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 an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[mezzanine-users] Is there a way to remove comments/ratings from everywhere?

2016-12-11 Thread Matt


I'm new to Mezzanine (and fairly new to Python). I'm looking to get away 
from Drupal and use something python-based.


Is there a way to disable comments/ratings from mezzanine completely? eg. 
in templates and in admin panel? From my research, this is the only thing 
I've found: http://bitofpixels.com/blog/disabling-mezzanine-comments/ – I 
also found another article saying this is not supported (although it was 
from 4 years ago).


I'm wondering if that link is my best option at this time (although that 
still leaves me with comment links in admin panel). I'm still learning the 
ropes so I may be missing something obvious. Thank you.

-- 
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 an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] How can I increase comment max_length?

2016-12-11 Thread ryneeverett
Whoops, hadn't realized that django-contrib-comments is a dependency.
This may be a bug if we're doing something that prevents this setting
from working.

-- 
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 an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] How can I increase comment max_length?

2016-12-11 Thread ryneeverett
It looks like that setting belongs to the `django.contrib.comments` app,
which was removed from django in the 1.8 release (our lowest supported
version).

-- 
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 an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] Cartridge-payments + django PayPal - how to change checkout form

2016-12-11 Thread Joseph Mohan
I would consider using a different approach as to that blog post, I set up
Paypal ipn with it last year and have recently rebuilt the entire thing as
it's not really well thought out. You'll end up with 10s of random
empty Orders. My advice to you is use the Paypal form from it and monkey
patch cartridge.shop.views.checkout_steps to your needs. checkout_steps is
the where the meat is, get in there and get to know it really well and
everything else falls into place.

But to answer your question, you should be able to just hide the form in
templates/shop/payment.html OR even better sublass
cartridge.shop.forms.OrderForm and hide the card details on every step.

PS I just launched Stripe. Absolutely incredible, I fully incorporated it
into cartridge but if you need a quick solution to taking card payments you
can pretty much just drop it into payment.html

Joe

On Sat, Dec 10, 2016 at 10:58 PM, Thomas  wrote:

> Hello,
>
> I am trying to set up a Cartridge shop that will use Paypal WPS/IPN for
> payment. I have followed the instructions here http://greenash.net.au/
> thoughts/2014/03/using-paypal-wps-with-cartridge-mezzanine-django/ which
> I understand were based on something originally posted to this group.
>
> The issue I am having is that step 2 of the checkout continues to show the
> standard Cartridge payment entry form, when of course I am wanting just a
> Pay with PayPal button. I noticed that SHOP_CHECKOUT_FORM_CLASS is
> deprecated, and set a URL pattern that passes 'CallbackUUIDOrderForm' into
> the 'checkout_steps' view instead.
>
> I also have PRIMARY_PAYMENT_PROCESSOR_IN_USE = False and all the rest of
> the instructions, and still see the standard step 2 instead of the Paypal
> one.
>
> Any advice/help would be appreciated here, as I'm pretty stuck. Ideally,
> if anyone has had this problem before and found a way out, I'd love to hear
> about that obviously, but of course any suggestions would be most welcome.
>
> Thnkas,
> Thomas
>
>
> --
> 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 an
> email to mezzanine-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.