Forum Replies Created
- AuthorPosts
-
first of all, thanks for the report.
However, I know why this happens and also know that it’s not really a problem (other than a somewhat annoying error message in the health screen)
It’s an easy fix though so I’ll update the rewards plugin in the next few days and the issue should go awayThanks
Hi
Your website referenced is running an (almost) 4 year old version of wppizza (3.13.7 , current version being 3.19.6) which of course all other wppizza add-ons depend on.
Furthermore , your wordpress version – as well as a multitude of other plugins – are about 4 years out of date.Please make sure your website (wordpress/plugin/themes) is up-to-date first of all.
Of course let me know if there are still any issues once this is done.
can I have a url please where I can see this ?
can I see a screenshot of your preorder plugin settings please?
Are you caching pages that should not be cached perhaps ?Just to say I’m not ignoring you and am in the process of implementing the NotifyURL stuff here.
Need to do some more testing though. Hopefully available later today or tomorrow, depending on how it goes.Although the NotifyURL is certainly a good idea to avoid above scenario (and I’m a bit puzzled why I did not implement this to start off with to be honest, but may be down to the state of things at the time….who knows), the customer will never have received an order confirmation from the shop (he was not charged either) and I cannot see how the order would have been marked as “complete” . Furthermore “authorised” does not mean “failed” so I do not understand what you are referring to in your post.
Of course I understand the issue and the above is all academic really, as it will be addressed with this next update in any case.
Thank for pointing it out .>Do you have maybe an idea what could cause this problem?
Yes, I do. This was fixed in 3.19.6 though So I assume you are either still running an old version of the WPPizza plugin or added this ingredient when using 3.19.5
see also https://www.wp-pizza.com/topic/issue-with-the-ingredients-plugin/24 February, 2025 at 1:03 pm in reply to: Request for modification of coupon functionality – restriction of use per zone #70036>Would you be able to implement this change?
Sorry, but I do not offer customisations (please see: https://docs.wp-pizza.com/faqs/?section=customisation)
Furthermore, what you are describing is not exactly something that could be implemented in a couple of lines of code, so even if I were to offer customisations, I can guarantee you you would not like what I would have to charge for a one-off thing like this.I could add a filter to the postcode plugin that could then be used by someone to filter code availabilities/validities depending on whatever conditions you want , but that’s as far as it goes I’m afraid.
actually, this is in fact the last update in the main wppizza plugin (v.3.19.5) that causes this. will be fixed very soon
[Now fixed as of 3.19.6]PS: you can work around this one for the moment by copying one (or many) of the other ones and renaming them from “abz (copy)” to what you then need
Must have something to do with the introduction of allowing additives to be added to ingredients in 5.3 though cannot be 100% sure .
Regardless, I’ll fix that (later today I would hope) Thanks for the report10 January, 2025 at 9:09 pm in reply to: The self-collection option does not lead to redirection to the menu page #69699sorry, I got confused with a different topic that’s about a different kind of redirect.
I’ll have a look..10 January, 2025 at 6:34 pm in reply to: The self-collection option does not lead to redirection to the menu page #69695works just fine here (map or no map ), but there are of course a million possible option combinations.
can you provide an example somewhere with a “walkthrough” so to speak where I can see this not working ?
and specifically a: “I’m expecting this to happen” but instead I get “this is happening”wrong place.
That particular one is set in wppizza->layoutam not going to bore you with the details why that was moved there , though maybe something to look at again at some point as this was done years ago, but for now, it’s there
Preorder v3.12 allows for this now to be enabled in the settings
Hope that helps
10 December, 2024 at 12:39 pm in reply to: Oderdetails/Thanks text after order not in the right Theme template #69438>Was referring to my old theme…
Ok, thanks for the clarification.>Almost every commercial theme…
It’s not actually themes themeselves – or indeed woocommerce – that were the issue, but elementor (as you know of course)
but I’ll spare you the details as it’s quite irrelevant now>Oh my God…that fixed the problem!
Glad to hear it>I spent hours trying to solve it somehow and you have fixed it now
Only possible because you provided the info and details I asked for . So you can thank yourself too 😉Don’t cry. It’s almost xmas. Time to rejoice and all that and if you have any more / other issues, get in touch. I cannot fix or amend things if I know nothing about them
Cheers
10 December, 2024 at 3:55 am in reply to: Oderdetails/Thanks text after order not in the right Theme template #69428>but the provider removed it from the portfolio years ago and because of all the PHP updates
Sorry, but I do not understand that statement. Could you expand on that ? what provider removed what exactly ? I am also somewhat puzzled as to what you mean by you can only use it on “outdated php versions “. wppizza is being developed with latest php (and with even not yet marked as stable future / development php versions)>delivered with WooCoomerce
I don’t follow. WPPizza has nothing to do with woocommerce ?!Other than that you might also find that 3.19.2 will fix your thank you page issue.
(As it happens, when dealing with something else a few days ago, I stumbled across a different way to implement the thank you page output which I believe works around all these potential theme and page builder incompatibilities.)In any event, it is of course entirely your choice to switch to woocommerce if you so wish .
10 December, 2024 at 3:45 am in reply to: The self-collection option does not lead to redirection to the menu page #69427As of 5.3 of the postcode plugin the redirection should work (again)
furthermore – as mentioned above in this thread – there is also now a ‘redirect’ attribute added that can be used in the shortcode (see https://docs.wp-pizza.com/developers/?section=delivery-by-post-zipcode).Hope that helps
Just out of curiosity, I had a dig around. So below some comments which may (or may not) be helpful
Not exhaustive research though. Maybe it helps someone somewhere.>If I upload the pictures directly it seems to work.
Yup. If you upload pics the regular way with wordpress, it generates 4 distinct separate images scaled and/or cropped.
exmage-wp-image-links (other/similar plugins may do the same) simply uses the image you added which then gets resized via css and image attributes. No actual resizing/cropping is taking place.
Since WP 6.7 WP adds the ‘auto’ attribute – if it’s missing and in certain circumstances – to the image sizes attribute.
So if the actual (thumbnail) image is meant to be square – but the actual image is not – it will simply be distorted to make it square.As it turns out, you can actually turn this off with the filter below, but this might have implications elsewhere.
I did not want disappear all the way down that rabbit hole – so if you do that , make sure to check all your images / pages .
Perhaps it works or perhaps it’s just a starting point . All depends on your particular site setup and many other factors. Suffice to say, it’s out of my (wppizza) hands and evidently something that WP introduced to the detriment of these kind of plugins…//remove auto from image sizes attribute (if set to lazy) add_filter('wp_img_tag_add_auto_sizes', 'myprefix_img_tag_remove_auto_sizes'); function myprefix_img_tag_remove_auto_sizes(){ return false; }
Has nothing to do with wppizza. WPPizza does not set image sizes like that.
it only ever gets the thumbnail depending on what’s set as thumbnail sizes
and generates and outputs something like this:<img width="64" height="64" src="http://[somedomain]/wp-content/uploads/2022/08/pizza-64.png" class="wppizza-article-image-thumb wp-post-image" alt="" title="Special Pizza" />
your theme – or some plugin – generates this:
<img loading="lazy" decoding="async" width="768" height="768" src="https://[somedomain]/wp-content/uploads/2024/10/pizza_pomodori.png" class="wppizza-article-image-thumb wp-post-image" alt="" title="Pizza POMODORI" srcset="https://[somedomain]/wp-content/uploads/2024/10/pizza_pomodori.png 300w, https:/[somedomain]e/wp-content/uploads/2024/10/pizza_pomodori-150x150.png 150w, https://[somedomain]/wp-content/uploads/2024/10/pizza_pomodori.png 768w, https://[somedomain]/wp-content/uploads/2024/10/pizza_pomodori.png 1024w, https://[somedomain]/wp-content/uploads/2024/10/pizza_pomodori.png 800w" sizes="auto, (max-width: 768px) 100vw, 768px">
you will also find that where your images look the right size the last declaration is
sizes="(max-width: 768px) 100vw, 768px"
instead of
sizes="auto, (max-width: 768px) 100vw, 768px"
i.e whatever generates the “auto” is your culprit. Only you will know whether that’s a theme or plugin. I can guarantee you though it’s not wppizza
6 December, 2024 at 6:51 pm in reply to: The self-collection option does not lead to redirection to the menu page #69379Forget the screenshot.
I think there’s simply a misunderstanding here. From what I can see, this works all just fine and as intended.A few things:
>When selecting the pick-up option, the “Our Menu” page does not appear as expected.
From what I can see (correct me if I’m wrong) you put the wppizza_dbp shortcode on your homepage.
If you put it on a page that does not have a cart/menu item on there it simply sets the choices made by the customer in the background so a subsequent visit to your wppizza menu page will take this into consideration. Nothing other than that will happen .
The idea of the shortcode is to offer an alternative to the popup (plugin settings). It cannot have any idea if or indeed where you want to redirect to.That said, there’s of course always the possibility that I misunderstand the problem you are referring to. If so , let me know.
Furthermore, thinking out loud here , perhaps I could add an attribute to the plugin short code options in th enext update that would allow you to set a redirection pageid or something when the “OK” was clicked.
I’ll think about that>However, the new version has more problems than the old one
How so ?6 December, 2024 at 4:33 pm in reply to: The self-collection option does not lead to redirection to the menu page #69377Can you post a screenshot of your postcode plugin options/settings please
- AuthorPosts