alan Posted April 2, 2015 Share Posted April 2, 2015 Best of luck apeisa with PadLoper; I miss so much that happens here at PW when I am off doing other stuff, only now saw this thread. Subscribed to email list and looking forward to an opportunity to try your product Cheers, -Alan Link to comment Share on other sites More sharing options...
backes Posted April 9, 2015 Share Posted April 9, 2015 (edited) Hey guys, first of all, thanks for this awesome extension! I tried already some stuff with padloper, and it's really nice to work with. Now I have a small problem with filling the card by ajax. When I'm logged in as admin it works fine, but when I enter the page as guest the Ajax call reports a Error500 on /padloper/ajaxAdd. I recognized, that the "add to cart" works neither without Ajax. So the shopping process only works when the user is logged in. Is there already a fix for this? Thanks, Martin Edited April 9, 2015 by backes Link to comment Share on other sites More sharing options...
apeisa Posted April 9, 2015 Author Share Posted April 9, 2015 There shouldn't be that kind of problem (I'm not seeing it). Can you send me with more information into my email and I'll take a look over the weekend. Glad you are liking padloper! 1 Link to comment Share on other sites More sharing options...
backes Posted April 13, 2015 Share Posted April 13, 2015 I narrowed the problem a bit, currently I cant add Products variations with modifiers to the cart, when I'm not logged in. The URL gets like ?error[]=productId I used several installations, locally and online. Always the same problem. Maybe there is a newer development version at some repository? Thanks! Martin Link to comment Share on other sites More sharing options...
Mackski Posted April 29, 2015 Share Posted April 29, 2015 Hi Apesia, I've just joined up via the mailing list. Look forward to testing it out! Link to comment Share on other sites More sharing options...
bernhard Posted May 15, 2015 Share Posted May 15, 2015 hi apeisa, any news on padloper? i have at least 2 bigger projects where this would be great to have! is there a vague release date? 1 Link to comment Share on other sites More sharing options...
apeisa Posted May 15, 2015 Author Share Posted May 15, 2015 Have you subscribed? I am sending more invites every now and then. 1 Link to comment Share on other sites More sharing options...
bernhard Posted May 15, 2015 Share Posted May 15, 2015 of course i have! don't know when... i'll try to be patient Link to comment Share on other sites More sharing options...
hellomoto Posted May 30, 2015 Share Posted May 30, 2015 Anyone tested on PW 2.6 yet? Link to comment Share on other sites More sharing options...
tires Posted June 3, 2015 Share Posted June 3, 2015 Hi Apeisa, great module! One question about the payment methods: I would like to provide (beside paypal) prepayment and invoice (ie "postpay"). Is there a way to set these methods in padloper? Thanks and Regards! BTW. How about a pdf invoice? Is this possible? Link to comment Share on other sites More sharing options...
tires Posted June 3, 2015 Share Posted June 3, 2015 Anyone tested on PW 2.6 yet? Yes i do! It seems to work well on 2.6.1. Link to comment Share on other sites More sharing options...
apeisa Posted June 3, 2015 Author Share Posted June 3, 2015 Hi Apeisa, great module! One question about the payment methods: I would like to provide (beside paypal) prepayment and invoice (ie "postpay"). Is there a way to set these methods in padloper? Thanks and Regards! BTW. How about a pdf invoice? Is this possible? Hi Currently the invoicing mode skips the payment options all together - so you would actually need two different "checkout" pages, other with setInvoiceMode true and other without (using normal payment modules). Then in your cart page you would have the choose between payment and invoice checkout. I am planning to make invoice (and other "postpay" methods) work just like all others, but I have no ETA for that yet. 1 Link to comment Share on other sites More sharing options...
tires Posted June 7, 2015 Share Posted June 7, 2015 Hi Currently the invoicing mode skips the payment options all together - so you would actually need two different "checkout" pages, other with setInvoiceMode true and other without (using normal payment modules). Then in your cart page you would have the choose between payment and invoice checkout. I am planning to make invoice (and other "postpay" methods) work just like all others, but I have no ETA for that yet. Hi! I am runnig the site-minimal-padloper-shop. Where do i have to create this second checkout page and where can i set the "setInvoiceMode" to "true"? Will there be two buttons? One with "Continue to checkout" and "Continue to checkout with invoice"? Is there a way to create a pdf-invoice? I need a pdf with a company-logo in the head. Thanks for your anwers and best regards! Link to comment Share on other sites More sharing options...
nfil Posted June 15, 2015 Share Posted June 15, 2015 For the pdf-invoice you could try this great module from wanze: http://modules.processwire.com/modules/pages2-pdf/ 1 Link to comment Share on other sites More sharing options...
apeisa Posted June 15, 2015 Author Share Posted June 15, 2015 nfil, just removed the link to Padloper site. It's not published yet. Soon, I hope Link to comment Share on other sites More sharing options...
Socrate Taiser Posted June 16, 2015 Share Posted June 16, 2015 Just cant wait to meet her! Link to comment Share on other sites More sharing options...
apeisa Posted June 16, 2015 Author Share Posted June 16, 2015 Hi! I am runnig the site-minimal-padloper-shop. Where do i have to create this second checkout page and where can i set the "setInvoiceMode" to "true"? Will there be two buttons? One with "Continue to checkout" and "Continue to checkout with invoice"? Is there a way to create a pdf-invoice? I need a pdf with a company-logo in the head. Thanks for your anwers and best regards! I would do it this way: create new page using "checkout" template. Give it name "checkout-invoice". Then edit your /site/templates/checkout.php and change the content of that file to: <?php if ($page->name == "checkout-invoice") { $checkout = $modules->get("PadCheckout"); $checkout->setInvoiceMode(true); $checkout->setShippingModule("ShippingFixed"); $content = $checkout->render(); } else { $checkout = $modules->get("PadCheckout"); $checkout->setPaymentModule("PaymentStripe"); $checkout->setShippingModule("ShippingFixed"); $content = $checkout->render(); } Then edit your /site/templates/cart.php and change it to: <?php $content = $modules->get("PadRender")->editCart(); $checkout = $pages->get("template=checkout, name=checkout"); $checkoutInv = $pages->get("template=checkout, name=checkout-invoice"); $content .= "<p><strong><a href='{$checkout->url}'>" . __("Continue to checkout") . "</a></strong></p>"; $content .= "<p><strong><a href='{$checkoutInv->url}'>" . __("Continue to checkout with invoice") . "</a></strong></p>"; 2 Link to comment Share on other sites More sharing options...
backes Posted June 18, 2015 Share Posted June 18, 2015 Hello, I try to implement a checkbox into the order process that is required by default. The first step to add it is no problem. But when it comes to saving the order, the purify method blows it away. The call for purify is in PadCheckout.module: foreach ($form as $f) { // Let's be extra careful here, since we can have all kinds of textfields in use $value = $this->sanitizer->purify($f->value); $this->order->{$f->name} = $this->sanitizer->entities1($value); } The problem is, that the purify sanitizer does not allow the input, that comes from Fields like Checkbox oder Options... Is there already a workaround in a newer version of padloper or do I make a mistake? Thanks. Martin Link to comment Share on other sites More sharing options...
apeisa Posted June 18, 2015 Author Share Posted June 18, 2015 Martin, that is fixed already. I really need to figure out how to distribute upgrades... Can you send me an email and I'll send you latest release back? 4 Link to comment Share on other sites More sharing options...
backes Posted June 19, 2015 Share Posted June 19, 2015 Thanks, the mail is on it's way. I sent you another mail with a hint on a "Checkout steps output" module. If you are interested, let me know! Thanks, Martin Link to comment Share on other sites More sharing options...
Claus Posted June 23, 2015 Share Posted June 23, 2015 The version I have is the one from 24th of May - is that the latest one? The cart-add-product.php template is null - is there non-null version? ;-) Link to comment Share on other sites More sharing options...
MuchDev Posted July 3, 2015 Share Posted July 3, 2015 Ready to integrate this on to a site! Wish me luck all Link to comment Share on other sites More sharing options...
Tyssen Posted July 10, 2015 Share Posted July 10, 2015 Reading this thread it seems a few have got their hands on it already. Is that through a private invited beta or are people getting access some other way? I signed up to the newsletter but I don't think I've had any emails since then. Link to comment Share on other sites More sharing options...
joshua Posted July 16, 2015 Share Posted July 16, 2015 Hi, I have the same problem as Martin has: In our template "padorder" is a checkbox and Sanitizer::purify breaks the order. My version is padloper-2015-6-21.... Link to comment Share on other sites More sharing options...
Claus Posted July 19, 2015 Share Posted July 19, 2015 Okay, so maybe someone can help a noob like me. I’m sitting here with the pages from the old shop system, and I want to convert them to PadLoper. I have this in my old add-to-cart page: //sc_item is my repeater field foreach ($page->sc_item as $product) { $contentThree .= "<span class='sc_item'>" . $product->sc_name . "</span></br>"; $contentThree .= "<span class='sc_price'>" . $modules->get( "ShoppingCart" )->renderPrice( $product->sc_price ) ."</span> excl. VAT"; $contentThree .= "<span class='sc_add'>" . $modules->get("ShoppingCart")->renderAddToCart($product). "</span>"; } What do I change – or said in another way – what are the PadLoper names equivalent to ShoppingCart, renderPrice, and renderAddToCart? (If this is in the documentation I can’t find it!) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now