Forum Replies Created
- AuthorPosts
-
re pickup/delivery times
maybe you are looking for this
https://docs.wp-pizza.com/developers/?section=pickup-opening-timesre table ordering / dine-in (or whatever you want to call it):
am in the middle of doing something on that front, though no ETA at all yet (might even get abandoned altogether, depending on how it goes)
something along the lines of (simplistically speaking)
customer scans QR code on table and orders something – after a waiter has generated an access code for that table –
order gets sent to kitchen in some way/shape or form.
customer(s) at that table can add new orders as the day progresses
when they want to pay , ask the waiter or pay online right there (with being able to split payments between people at table etc etc )again, it’s kind of early days on that front , but i’ll make some alpha version available on request when the time comes to get some real user input , as opposed to myself imagining things….
3 October, 2020 at 5:15 pm in reply to: How to hide menu when store closed, and adjust delivery times #51383re1: only you will know what you’ve done there
re2: there’s nothing inbuilt for this , but i guess you could write some plugin based on this
https://docs.wp-pizza.com/developers/?section=filter-wppizza_filter_options
adjusting thewppizza[order_settings][order_delivery_time]
parameter as appropriate , probably in conjunction with querying the orders themselves (see: https://docs.wp-pizza.com/developers/?section=function-wppizza_get_orders )3 October, 2020 at 4:33 pm in reply to: How to hide menu when store closed, and adjust delivery times #51381re 1:
>…I don’t want customers to fill up their cart,…unless you have some other problems elsewhere, they cant “fill up their cart”, as a popup will say “shop closed” when you click on an item
re 2:
you can set the delivery time to whatever (and whenever) you want in wppizza->order settings->Delivery -> Delivery Time
…but maybe i don’t understand the question…> …integrating the Star Reciept Printers…
unless and until there are several / many users that use star printers (which does not seem to be the case) and request this , no, not really – sorry
PS: that notice should not have any impact on anything , but of course it’s always nicer to avoid them if possible (though might not be anything that the wppizza plugin as such causes or can do anything about)
thanks for tracking it down.
having had a trawl through several sites, this seems to be – in many cases anyway – related to something in the WP gutenberg editor in fact (and perhaps in conjunction with yoast as well)what version of WP and Yoast do you have installed ? (as i cannot reproduce this here at all )
perhaps you can post your output of wppizza ->tools ->system info too here , so i know what else you are running (make it a private reply if you wish)just trigger the click on the li (price) element from whatever other element you want to trigger it from i would think
only you will know what’s going on.
sounds to me like you’ve been hacked – but maybe you have not been.
as you are not providing a url or in fact anything else to go on, i cannot even begin to guess or comment>we did have a wp-pizza core update?
irrelevant. nothing was changed in that one that could be remotely related to thisdid you try changing to a different / standard (20-something) theme ?
>I started getting the following error
so what changed between it not being there and it “starting” to be being there ?are there also other notices/warnings ?
>What is PLZ? In german its a short form of Postleitzahl which means postcode.
which is exactly what it is>And it is required. Where can I delete this field?
you can not delete this. this is a requirement and will dynamically be displayed by stripe, depending on cc input etcyou are probably/possibly looking for
“Group, sort and display menu items by category” in wppizza->layout
This reply has been marked as private.>No the preorder plugin is enable.
that wasn’t quite what I asked, but thanks for the screenshot .
i’ll see if i can reproduce this here with your settings and will post back when i know morea couple of things.
do you still get this behaviour when you disable the preorder plugin ?
and, if not, can i see a screenshot of your preorder settings pleaseThere is no provision for this sort of thing I’m afraid
though if someone wanted to he/she could probably write some sort of plugin based on the documentation provided
adding/removing item from cart etc depending on pickup/delivery selected
https://docs.wp-pizza.com/developersbut it most certainly wont be trivial….
>I think it’s not possible to configure the cross-sells plugin so that only certain products are being shown in the cart.
that is correct, because that is not what it is designed to do>other solutions
see
https://docs.wp-pizza.com/developers/?section=wppizza-markup-pages-page-order-php
and use shortcodes to output whatever item(s) you want to output I would think>Is this possible?
only by filtering
https://docs.wp-pizza.com/developers/?section=wppizza-markup-loop-posts-prices-phpSome more info here
https://github.com/stripe/react-stripe-elements/issues/335ok, I’ve been digging around a bit and I’m not sure if this is even doable having ApplePay payment requests AND the preorder plugin at the same time (other than *redirecting* to stripe where apple pay is integrated automatically anyway)
from what i can see apple (unlike google payrequests!) *requires* that a button gets distinctly clicked before the payment request is being actioned.
which is whatIntegrationError: show() must be called from a user gesture handler
is all about
however, what happens with the preorder plugin is that when someone clicks on “buy now” button (or whatever it will be called) it first of all checks one last time if the selected timeslot is actually still available as someone might have been staying on the order page for ages – and only if this is still a valid timeslot , will the applypay option be triggered automatically.
(same goes for stockmanagement as it happens)i.e the chain of events is:
click button, script checks timeslot and/or stocklevel availability, if ok show apple pay. (if not ok, show an alert to the effect that timeslot expired, out of stock or whatever is appropriate)apple seemingly does not allow for this i.e the show() event *must* be triggered directly by clicking on a button and cannot be triggered programatically .
*Maybe* there’s a way around this , but knowing apple I’m not hopeful so cannot really promise anything on that front at the moment I’m afraid… 🙁
(other than suggesting that if you MUST offer apple pay AND want to use the preorder and/or stockmnagemnt plugin you have to use the default stripe->redirect option)
- AuthorPosts