Forum Replies Created
- AuthorPosts
-
the next update of the plugin will also have the ability to add “tags” to each menu item. the slug of each tag will then be added as css class name to the surrounding article html element of each item which you can then use to mark products as needed . perhaps with some css like (assuming a tag of “special offer”)
.special-offer:after { content: 'special offer'; position: absolute; top: 0; left: 15px; z-index: 10; background-color: #EFEFEF; text-align: center; font-size: 90%; line-height: 20px; display: block; padding: 2px 30px; -webkit-transform: translateY(-20px) translateX(-60px) rotate(-30deg); -moz-transform: translateY(-20px) translateX(-60px) rotate(-30deg); -ms-transform: translateY(-20px) translateX(-60px) rotate(-30deg); -o-transform: translateY(-20px) translateX(-60px) rotate(-30deg); transform: translateY(-20px) translateX(-60px) rotate(-30deg); -webkit-transform-origin: top right; -moz-transform-origin: top right; -ms-transform-origin: top right; -o-transform-origin: top right; transform-origin: top right; }
I supposed you could (mis)use the add ingredients plugin for that along the lines of the “Platters” example here
https://demo.wp-pizza.com/wppizza-add-ingredients/our-menu/user/
(naturally adjusting the labelling and prices as required …)As there are a million ways to do popups you need to decide which route you want to go and develop this as you require
You probably want to look at the docs here https://docs.wp-pizza.com/developers/?section=wppizza-markup-loop
and generally at the wordpress codex as you will probably need to enqueue javascript files tooHi,
I have been developing things here with php8 for quite a few months now and any issues I have come across have been fixed.
However, I am of course not able to test things with all combinations of wppizza and all other wordpress plugins and/or themes so there is naturally always a possibility that in certain settings some issues may arise.So, in essence, as far as I am aware it works just fine with php8 , but if there should be any issues I am not aware of I will of course address those asap .
It’s usually just a matter of hours from being told about it until an update of the plugin is made available if the precise error/issue can be pinpointed from the debug.log (provided it is indeed an issue with wppizza and not some other plugin/theme)
To do that, debug must be enabled of course – see : https://docs.wp-pizza.com/troubleshooting/hope that helps
you can do that with filters
https://docs.wp-pizza.com/developers/?section=wppizza-markup-pages-page-confirm-order-php
Not really.
There is of course the option to restrict a user to be able to edit menu items only (WPPizza->Access Rights) but if you want to make this even more restrictive (i.e perhaps restricting to being able to use the quick edit only for example) you might want to try something like this
https://www.role-editor.com/forums/topic/restrict-access-by-role-to-quick-edit-functionality-on-post-listing-screens/
or similarhave you done general troubleshooting ?
are you caching things ?again, you need to speak to your mail administrator, the plugin has no influence over this .
it simply sends an email (programmatically) and the mail server has to deal with it.
at that point it is completely the mail servers responsibility to do whatever it is it needs to or wants to do .there might be all sorts of things that will influence the delivery (mail headers, spam settings, server setup in general etc etc ) but all of that is completely out of the plugin’s hands
you need to speak to whoever administers your email server
it is their responsibility to deliver emails in a timely manner.
this has nothing to do with wppizza or indeed anything the plugin (i.e: I) could do anything aboutok, just let me know
send me an email to dev[at]wp-pizza.com with this topic as a subject line as there won’t be anything gained from having the conversation we are going to have on a public forumthanks
just a quick update to say I haven’t forgotten.
In the middle of getting rid of some obvious bugs here and there, but when that’s done – by mid next week i would think – I will most likely need your input to do some tests as you actually have an orderlord account (I assume ?!) whereas I am just working on educated guesses without any way to test this in real lifeThis really has nothing to do with me / wppizza .
That said, a quick google for “Forbidden. You sent forms too often. please wait a few minutes”.
gives me this as a first result
https://wordpress.org/support/topic/forbidden-you-sent-forms-too-often-please-wait-a-few-minutes-contains-con/which is in fact a plugin you are using on you site
whether or not this is the one causing your issue , I do not know, but seems a good contender by the look of things….This topic has been closed
please see the forum rules – https://www.wp-pizza.com/topic/forum-rules-read-me-before-posting – regarding double posting / multiple channels
thank you
digging around a bit more, there seems to be a fixed username/password for testing. I’ll see what I can find out , but will take a few days until I can say if this will happen or not. I’ll post here as I find out things
I am not necessarily against integrating this (as an alternative to shipday i suppose)
but i cannot find anything that allows me to open an overlord developer account to write and test integrations…the relevant data is in the [your_table_prefix]_usermeta table stored with a meta key of wppizza_rewards_x (where ‘x’ is your blogid – typically 1 if it’s not a multisite setup) associated to the user id .
it’s a serialized arraythat will look *something like* this – depending on your settings:
( [points] => Array ( [first_order] => Array ( [timestamp] => 1643293592 [points_expire] => 1674829592 [value_per_point] => 0.01 [points_total] => 250 [points_value] => 2.5 [points_redeemed] => Array ( ) [points_unredeemed] => 250 [points_value_unredeemed] => 2.5 [settings] => Array ( [points_type] => cart_subtotal [points_per_unit] => 1 [points_per_unit_pickup] => 0 [points_rounding] => natural [value_per_point] => 0.01 [award_points_user_registration] => 125 [award_points_first_order] => 250 [points_expire_days] => 365 ) ) [order_7] => Array ( [timestamp] => 1643293592 [points_expire] => 1674829592 [value_per_point] => 0.01 ............. more data ................
i suppose you could amend the point total and related (points (un)redeemed, (un)redeemed value etc ) for the “first_order” array but I would strongly advise you to make a backup first before doing anything there – it’s entirely at your own risk editing this. This thing is not really that trivial
re 1): you could send some additional emails (conditional on the order values , i.e category selected) using the ‘wppizza_on_order_execute’ action hook
https://docs.wp-pizza.com/developers/?section=action-wppizza_on_order_execute
maybe even in conjunction with this filter here in some way
https://docs.wp-pizza.com/developers/?section=filter-wppizza_filter_optionsRe 2:
i would think this resource here would get you on the way
https://docs.wp-pizza.com/developers/?section=wppizza-markup-pages-page-order-phpINPROGRESS orders are exactly that, so must block the timeslot as they could be completed anytime – typically in seconds/minutes but it’s not guaranteed as it depends on user as well as gateway (inter)action.
Of course, if there are issues with your payment provider , than that’s something they need to fix. I have no influence over their system.
In short, what you are describing is by design and there are no plans to “fix it” as there’s nothing to fix from my end from what I can see
17 January, 2022 at 11:57 pm in reply to: New user registration but cannot log in unless a password reset #58647wppizza does not do any kind of setting of passwords on registration or sending password reset links (or anything similar/related) itself.
it simply uses the wordpress registration process as it is (although this might have been altered by some other plugin)In other words: what you are describing is nothing that wppizza controls or is influencing
Hi
sorry, but I must admit I don’t really know what you are referring to with your reference to the “custom gateway .zip”
Could you send me a link to this zip file please to allow me to be able to help you ?thank you
- AuthorPosts