Forum Replies Created
- AuthorPosts
-
thanks for all the info. one more question though please.
what day of the week do you have “Week Starts On” set to in your general wordpress setting (wp-admin/options-general.php) ?your screenshot is a 404 ?!
can i see a screenshot of
– the setting in the plugin (wppizza->preorder)
– your main opening times (wppizza->openingtimes)
alongside the version of the preorder plugin you hare using ?thanks
25 April, 2021 at 1:28 am in reply to: Replace transaction id with order id on thank y ou page #55616you can change it if you want, but you’ll probably make it unnecessarily complicated for yourself to find an order in your mollie account if any question regarding payment’s should ever arise
all up to you though
24 April, 2021 at 8:22 pm in reply to: Replace transaction id with order id on thank y ou page #55601something along these lines i guess (though unless you are only accepting COD type order , removing transaction id’s may not be a good idea , but up to you of course)
add_filter('wppizza_filter_transaction_details', 'my_custom_transaction_details', 10, 3); function my_custom_transaction_details($tx_keys, $type, $order){ /* get selected (filterable) parameters available keys: [wp_user_id] [order_update] [order_delivered] [notes] [payment_gateway] [payment_status] [user_data] [ip_address] [order_date] [order_id] [payment_due] [pickup_delivery] [payment_type] [payment_method] [transaction_id] [total] */ /* example : adding order id */ $tx_keys[] = 'order_id'; /* example: removing transaction_id (wppizza version <= 3.13.1) */ $_keys = array_flip($tx_keys);//flip key/value $_txid_key = $_keys['transaction_id'];//get key for tx_id unset($tx_keys[$_txid_key]);//remove tx id from array /* example : removing transaction_id as of wppizza 3.13.2+ you will be able to simply do the following instead */ unset($tx_keys['transaction_id']); return $tx_keys; }
the quantity input that has been added on that site is not something that wppizza does so i cannot comment really as to why it does not do what you want it to do.
Glad to hear you got it solved
please use your browsers element inspector to identify classes of elements . your css is trying to target something that does not exist
no. i mean get rid of it, delete it, omit it, eliminate it ….. ( clearer now ? 🙂 )
filters just don’t work that wayget rid of
$styles = apply_filters('wppizza_ingredients_filter_email_styles', $styles );
it doesnt belong there
as that’s – evidently – an issue thrown in
>/wppizza-customisation/wppizza-customisation .php on line 16only you will know what’s on line 16 there . There is no (official) plugin called ‘wppizza-customisation’ so i assume it’s something you created and added things to
if you enable debug
https://docs.wp-pizza.com/troubleshooting/I’m sure it will tell you what the issue is
Sorry, but I really cannot advise you on other plugins
However, regarding registration spam, that typically has nothing to do any kind of login widget anyway (spammers typically don’t click on links but attack things programmatically)What i *can* say is that i killed a lot of registration spam by adding this recently: https://wordpress.org/plugins/ban-hammer/
it’s a bit quirky in places (and somewhat brute force) but in my case it stopped a lot of obviously fake registrations – it’s a start i guess and there are of course 1000’s of other security plugins anyway that [claim] to deal with this stuff too but that’s all down to personal preference and particular setup of course as to what is the right way for you
This reply has been marked as private.>…I ask the question…
fair enough though – no harm done in asking i would say . not everyone knows or is supposed to know how this stuff works of course. They are producing food, not software, after all.That update (in fact that whole plugin) hos nothing at all to do with email deliveries / bounces etc .
so – unless I am completely misunderstanding what you mean by “order confirmation emails for customers being bounced back ” this has nothing at all to do with that update or indeed that pluginsee here
https://docs.wp-pizza.com/developers/?section=gateway-filter-frontend
probably / possibly in conjunction withwppizza_is_pickup()
from here
https://docs.wp-pizza.com/developers/?section=global-wppizza-functionsquick update:
i believe as of version 3.6.4 (of the preorder plugin) this is now fixed, but let me know if you still have issues of course - AuthorPosts